{% extends "stories.base.html" %} {% load markup %} {% block extranav %} {% endblock %} {% block content %}

Bug {{ story.id }}

Critical

{{ story.title }}


{% for task in story.task_set.all %} {% endfor %}
Task Project Series Assignee Status Milestone
{{ task.title }} {{ task.project.title }} {{ task.series.name }} {{ task.assignee.username }} {{ task.status }} {{ task.milestone.name }}
{{ story.description|markdown:"safe" }}

{% for tag in story.storytag_set.all %} {{ tag.name }} {% endfor %}

{% for comment in story.comment_set.all %} {% endfor %}
by {{ comment.author.username }} on {{ comment.posted_date }}:
{{ comment.content|markdown:"safe" }}
{% endblock %}