home · contact · privacy
Refactor VersionedAttribute history pages templates.
[plomtask] / templates / process_efforts.html
index 31efcc31d286b9ef88c13a468847fb275a382ecd..bdfa7dd0547496a32625d3e29d97d592587be705 100644 (file)
@@ -1,23 +1,9 @@
 {% extends '_base.html' %}
+{% import '_macros.html' as macros %}
 
 
 
 {% block content %}
-<h3>process default effort history</h3>
-<table>
-
-<tr>
-<th>process</th>
-<td><a href="process?id={{process.id_}}">{{process.title.newest|e}}</a></td>
-</tr>
-
-{% for date in process.effort.history.keys() | sort(reverse=True) %}
-<tr>
-<th>{{date | truncate(19, True, '') }}</th>
-<td>{{process.effort.history[date]}}</td>
-</tr>
-{% endfor %}
-
-</table>
+{{ macros.history_page("process", process, "effort", process.effort) }}
 {% endblock %}