aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/projects/templates/projects/project_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'snakeplan/projects/templates/projects/project_list.html')
-rw-r--r--snakeplan/projects/templates/projects/project_list.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/snakeplan/projects/templates/projects/project_list.html b/snakeplan/projects/templates/projects/project_list.html
new file mode 100644
index 0000000..5ede56e
--- /dev/null
+++ b/snakeplan/projects/templates/projects/project_list.html
@@ -0,0 +1,7 @@
1<h1>Projects</h1>
2
3<ol>
4 {% for project in object_list %}
5 <li><a href="{{project.id}}">{{project.name}}</a></li>
6 {% endfor %}
7</ol>