aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/projects/templates/iteration_list.html
blob: 4b92f7105c688b4f9eef4b62634406cb8f6b6187 (plain)
1
2
3
4
5
6
7
8
9
<h1>Project: {{project_name}}</h1>

<h2>Iterations</h2>
<ul>
{% for iteration in iterations %}
    <li><a href="/iteration/{{iteration.id}}">{{iteration.name}}</a></li>
{% endfor %}
</ul>
</ul>