diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-15 15:32:35 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-15 15:32:35 +0200 |
commit | 7a53e87e236f5e0d89fad0c583b173a8c3b98818 (patch) | |
tree | 3dcd21982cf969446d21fdc8863a66e09dcceede /archaeological_operations/templates | |
parent | f4f4c4f7df1a87c4472a9c03637f7070d2e3ec0f (diff) | |
download | Ishtar-7a53e87e236f5e0d89fad0c583b173a8c3b98818.tar.bz2 Ishtar-7a53e87e236f5e0d89fad0c583b173a8c3b98818.zip |
Dashboard operation: fix table layout (refs #3218)
Diffstat (limited to 'archaeological_operations/templates')
-rw-r--r-- | archaeological_operations/templates/ishtar/dashboards/dashboard_operation.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_operations/templates/ishtar/dashboards/dashboard_operation.html b/archaeological_operations/templates/ishtar/dashboards/dashboard_operation.html index eca69b87f..5b435032e 100644 --- a/archaeological_operations/templates/ishtar/dashboards/dashboard_operation.html +++ b/archaeological_operations/templates/ishtar/dashboards/dashboard_operation.html @@ -662,7 +662,9 @@ {% for yr in dashboard.years %} {% if forloop.counter0|divisibleby:3 %} <th rowspan='2' class="sub">{% trans "Department" %}</th>{% endif %} - <th colspan='3'>{{yr|default_if_none:'-'}}</th>{% endfor %}<th colspan='3'>{% trans "Sum" %}</th> + <th colspan='3'>{{yr|default_if_none:'-'}}</th>{% endfor %} + <th rowspan='2' class="sub">{% trans "Department" %}</th> + <th colspan='3'>{% trans "Sum" %}</th> </tr> <tr> {% for yr in dashboard.years %}<th>{%trans "Nb."%}</th><th>{%trans "Cost"%}</th><th>{%trans "FNAP cost"%}</th>{% endfor %}<th>{%trans "Nb."%}</th><th>{%trans "Cost"%}</th><th>{%trans "FNAP cost"%}</th> |