{% extends '_layout.html' %} {% block title %} {{ story.name }} {% endblock %} {% block breadcrumb %}
  • Accueil
  • {% if story.epic %}
  • Epic #{{ story.epic.id }}
  • {% else %}
  • Toutes les Stories
  • {% endif %}
  • Story #{{ story.id }}
  • {% endblock %} {% block main %} {% load martortags %}
    {% if story.epic %} Epic: {{ story.epic.name }} {% endif %}
    Créée par {{ story.author.get_full_name }}, le {{ story.created }}
    {% if story.weight %} {% include 'weight_svg.html' with weight=story.weight h=36 %} {% endif %} {% if story.closed %}

    [Terminée] {{ story.name }}

    {% else %}

    {{ story.name }}

    {% endif %}

    {% if story.description %} {{ story.description|safe_markdown }} {% else %} (Pas de description) {% endif %}

    Assignée à
    Sprints

    {% include '_comment_div.html' with obj=story %} {% endblock %}