aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/projects/story_list.html
blob: f606cc54014cfad4549189a72bed12ea0f85faad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block content %}

<h1>Iteration: {{ iteration_name }}</h1>

<h2>Stories</h2>
<ol>
    {% for story in object_list %}
    <li><a href="/p/story/{{story.id}}/tasks/">{{story.name}}</a></li>
    {% endfor %}
</ol>

{% endblock %}