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