aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/projects/iteration_list.html
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-02-20 23:47:14 -0500
committerMike Crute <mcrute@gmail.com>2010-02-20 23:47:14 -0500
commit3fdf9ae787dcc7bb46dbaac5250b22f641e41648 (patch)
treeb438c0f5ca30117cee3c9f8d6c8626ab6867d1dc /snakeplan/templates/projects/iteration_list.html
parent38736d1ff45b6a06c0515b683cdc47e0687abf2e (diff)
downloadsnakeplan-3fdf9ae787dcc7bb46dbaac5250b22f641e41648.tar.bz2
snakeplan-3fdf9ae787dcc7bb46dbaac5250b22f641e41648.tar.xz
snakeplan-3fdf9ae787dcc7bb46dbaac5250b22f641e41648.zip
Relocating templates
Diffstat (limited to 'snakeplan/templates/projects/iteration_list.html')
-rw-r--r--snakeplan/templates/projects/iteration_list.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/snakeplan/templates/projects/iteration_list.html b/snakeplan/templates/projects/iteration_list.html
new file mode 100644
index 0000000..cb39fc7
--- /dev/null
+++ b/snakeplan/templates/projects/iteration_list.html
@@ -0,0 +1,24 @@
1{% extends "base.html" %}
2
3{% block content %}
4<h1>Project: {{project_name}}</h1>
5
6<h2>Iterations</h2>
7
8<table>
9 <tr>
10 <th>Iteration</th>
11 <th>Description</th>
12 <th>Start Date</th>
13 <th>End Date</th>
14 </tr>
15{% for iteration in object_list %}
16 <tr>
17 <td><a href="/iteration/{{iteration.id}}">{{iteration.name}}</a></td>
18 <td>{{iteration.description}}</td>
19 <td>{{iteration.start_date}}</td>
20 <td>{{iteration.end_date}}</td>
21 </tr>
22{% endfor %}
23</table>
24{% endblock %}