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 | a25d16f856dc2f743a1afb40a3b34151c0ac0b1f (patch) | |
tree | 3dcd21982cf969446d21fdc8863a66e09dcceede /archaeological_operations/templates | |
parent | 19bcea02b2f682a46134fb580a24a48615d6e2ef (diff) | |
download | Ishtar-a25d16f856dc2f743a1afb40a3b34151c0ac0b1f.tar.bz2 Ishtar-a25d16f856dc2f743a1afb40a3b34151c0ac0b1f.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> |