aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/projects/project_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'snakeplan/templates/projects/project_list.html')
-rw-r--r--snakeplan/templates/projects/project_list.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/snakeplan/templates/projects/project_list.html b/snakeplan/templates/projects/project_list.html
index 5ede56e..d668603 100644
--- a/snakeplan/templates/projects/project_list.html
+++ b/snakeplan/templates/projects/project_list.html
@@ -1,7 +1,13 @@
1{% extends "base.html" %}
2
3{% block content %}
4
1<h1>Projects</h1> 5<h1>Projects</h1>
2 6
3<ol> 7<ol>
4 {% for project in object_list %} 8 {% for project in object_list %}
5 <li><a href="{{project.id}}">{{project.name}}</a></li> 9 <li><a href="/p/project/{{project.id}}/iterations/">{{project.name}}</a></li>
6 {% endfor %} 10 {% endfor %}
7</ol> 11</ol>
12
13{% endblock %}