home · contact · privacy
f1b93cbd95148b137d539808e42322fd4c7a840c
[plomtask] / templates / process_descriptions.html
1 {% extends '_base.html' %}
2
3
4
5 {% block content %}
6 <h3>process description history</h3>
7 <table>
8
9 <tr>
10 <th>process</th>
11 <td><a href="process?id={{process.id_}}">{{process.title.newest|e}}</a></td>
12 </tr>
13
14 {% for date in process.description.history.keys() | sort(reverse=True) %}
15 <tr>
16 <th>{{date | truncate(19, True, '') }}</th>
17 <td><pre>{{process.description.history[date]}}</pre></td>
18 </tr>
19 {% endfor %}
20
21 </table>
22 {% endblock %}
23