index.html 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {% extends '_layout.html' %}
  2. {% block main %}
  3. <header>
  4. <div class="flex-row">
  5. <h2 class="flex-extend">Backlog</h2>
  6. <a class="button icon fa-plus tool-btn" href="{% url 'epic_create' %}"></a>
  7. </div>
  8. </header>
  9. <table class="alt">
  10. <thead>
  11. <th>Epic</th>
  12. <th>Projet</th>
  13. <th>Dim.</th>
  14. <th>Val.</th>
  15. <th>Prog.</th>
  16. </thead>
  17. <tbody>
  18. {% for epic in epics %}
  19. <tr data-url="{% url 'epic_details' epic_id=epic.id %}">
  20. <td><h5>{{ epic.name }}</h5></td>
  21. <td>{{ epic.project.name }}</td>
  22. <td>{{ epic.size }}</td>
  23. <td>{{ epic.value }}</td>
  24. <td>{{ epic.nb_closed_stories }} / {{ epic.nb_stories }}</td>
  25. </tr>
  26. {% endfor %}
  27. </tbody>
  28. </table>
  29. {% endblock %}