home · contact · privacy
Add Conditions for Todos/Processes to be met or undone by other Todos.
[plomtask] / templates / conditions.html
1 {% extends 'base.html' %}
2
3 {% block content %}
4 <a href="condition">add</a>
5 <ul>
6 {% for condition in conditions %}
7 <li><a href="condition?id={{condition.id_}}">{{condition.title.newest}}</a>
8 {% endfor %}
9 </ul>
10 {% endblock %}
11
12