aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/projects/project_list.html
blob: 331d7c290fb1e98e8ade2de44772a9a7701eb937 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}

{% block content %}
<h1>Projects</h1>

<ol>
    {% for project in object_list %}
    <li><a href="/p/project/{{project.id}}/iterations/">{{project.name}}</a></li>
    {% endfor %}
</ol>
{% endblock %}