home · contact · privacy
977ac405ac89c57fd66d65bf8dd71d7c78cbfb67
[plomtask] / templates / processes.html
1 {% extends '_base.html' %}
2
3 {% block content %}
4 <h3>processes</h3>
5
6 <table>
7 <tr>
8 <th><a href="?sort_by={% if sort_by == "steps" %}-{% endif %}steps">steps</a></th>
9 <th><a href="?sort_by={% if sort_by == "title" %}-{% endif %}title">title</a></th>
10 </tr>
11 {% for process in processes %}
12 <tr>
13 <td>{{ process.explicit_steps|count }}</td>
14 <td><a href="process?id={{process.id_}}">{{process.title.newest}}</a></td>
15 </tr>
16 {% endfor %}
17 </table>
18
19 <p>
20 <a href="process">add</a>
21 </p>
22 {% endblock %}