story_details.html 783 B

1234567891011121314151617181920212223
  1. {% extends '_layout.html' %}
  2. {% block main %}
  3. {% load martortags %}
  4. <header class="flex-row">
  5. <h2 class="flex-extend">{{ story.name }}</h2>
  6. <ul class="actions small">
  7. <li><a class="button special icon fa-edit tool-btn" href="{% url 'story_edit' story_id=story.id %}"></a></li>
  8. <li><a class="button icon fa-trash tool-btn" href="{% url 'story_delete' story_id=story.id %}"></a></li>
  9. </ul>
  10. </header>
  11. <div class="description">
  12. {{ story.description|safe_markdown }}
  13. </div>
  14. <div>Auteur: {{ story.author.get_full_name }}</div>
  15. <div>Assignée à: {% for user in story.assignees.all %}{{ user.get_full_name }}{% empty %}(Aucun){% endfor %}</div>
  16. <div>Sprints: {% for sprint in story.sprints.all %}{{ sprint }}{% empty %}(Aucun){% endfor %}</div>
  17. {% endblock %}