{% extends '_layout.html' %} {% load commenting %} {% block title %} {{ story.name }} {% endblock %} {% block breadcrumb %}
  • Accueil
  • {% if from == 'epic_details' %}
  • 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.closed %} [Terminée] {{ story.name }} {% else %} {{ story.name }} {% endif %}

    {% if story.weight %} {% include 'weight_svg.html' with weight=story.weight h=36 %} {% endif %}

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

    Assignée à
    Sprints

    {% comments_for story %} {% endblock %}