aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/projects/iteration_list.html
blob: f48b8126f57e01196e389a57725941a53d127aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}

{% block content %}
<h1>Project: {{project_name}}</h1>

<h2>Iterations</h2>
	
<table>
    <tr>
        <th>Iteration</th>
        <th>Description</th>
        <th>Start Date</th>
        <th>End Date</th>
    </tr>
{% for iteration in object_list %}
    <tr>
        <td><a href="/p/iteration/{{iteration.id}}/stories/">{{iteration.name}}</a></td>
        <td>{{iteration.description}}</td>
        <td>{{iteration.start_date}}</td>
        <td>{{iteration.end_date}}</td>
    </tr>
{% endfor %}
</table>
{% endblock %}