home · contact · privacy
5cd00b5c279b0f14b25cb258549a05596230422b
[plomtask] / templates / processes.html
1 {% extends '_base.html' %}
2
3 {% block content %}
4 <h3>processes</h3>
5
6 <table>
7 <tr>
8 <th>steps</th>
9 <th>title</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 %}