| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {% extends '_layout.html' %}
- {% load commenting %}
- {% block title %}
- {{ story.name }}
- {% endblock %}
- {% block breadcrumb %}
- <li><a href="{% url 'index' %}">Accueil</a></li>
- {% if from == 'epic_details' %}
- <li><a href="{% url 'epic_details' epic_id=story.epic.id %}">Epic #{{ story.epic.id }}</a></li>
- {% else %}
- <li><a href="{% url 'story_index' %}">Toutes les Stories</a></li>
- {% endif %}
- <li><a>Story #{{ story.id }}</a></li>
- {% endblock %}
- {% block main %}
- {% load martortags %}
-
- <header>
- <div class="flex-row">
- {% if story.epic %}
- <span class="annotation flex-extend">
- Epic: <a href="{% url 'epic_details' epic_id=story.epic.id %}">{{ story.epic.name }}</a>
- </span>
- {% endif %}
-
- <blockquote class="annotation">Créée par {{ story.author.get_full_name }}, le {{ story.created }}</blockquote>
-
- </div>
- <div class="flex-row title-bar">
-
-
- <h2 class="flex-extend">
- <i class="fa fa-sticky-note" style="color:{{ story.epic.project.color }};margin-right: 10px;" title="Projet: {{ story.epic.project.name }}"></i>
- {% if story.closed %}
- <span style="color: grey;">[Terminée] {{ story.name }}</span>
- {% else %}
- {{ story.name }}
- {% endif %}
- </h2>
-
- {% if story.weight %}
- <span style="margin-right: 10px;">{% include 'weight_svg.html' with weight=story.weight h=36 %}</span>
- {% endif %}
-
- <ul class="actions small">
-
- {% if story.closed %}
- <li><a class="button alt icon fa-folder-open tool-btn" href="{% url 'story_reopen' story_id=story.id %}" title="Ré-ouvrir">Ré-ouvrir</a></li>
- {% else %}
- <li><a class="button special icon fa-check tool-btn" href="{% url 'story_close' story_id=story.id %}" title="Marquer comme terminée">Cloturer</a></li>
- {% endif %}
- <li><a class="button special icon fa-edit tool-btn" href="{% url 'story_edit' story_id=story.id %}" title="Modifier"></a></li>
- <!-- <li><a class="button icon fa-trash tool-btn" href="{% url 'story_delete' story_id=story.id %}" title="Supprimer"></a></li> -->
- </ul>
- </div>
- </header>
-
- <hr>
-
- <div class="description">
- {% if story.description %}
- {{ story.description|safe_markdown }}
- {% else %}
- <i style="color:grey;">(Pas de description)</i>
- {% endif %}
- </div>
- <hr>
-
- <div class="flex-row">
- <h5>Assignée à</h5>
- <ul class="tags-list">
- {% for user in story.assignees.all %}
- <li>{{ user.get_full_name }}</li>
- {% empty %}
- <li>(Aucun)</li>
- {% endfor %}
- </ul>
- </div>
- <div class="flex-row">
- <h5>Sprints</h5>
- <ul class="tags-list">
- {% for sprint in story.sprints.all %}
- <li>{{ sprint }}</li>
- {% empty %}
- <li>(Aucun)</li>
- {% endfor %}
- </ul>
- </div>
-
- <hr>
-
- {% comments_for story %}
-
- {% endblock %}
|