diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-29 17:45:25 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-29 17:45:25 +0200 |
| commit | 1d2864b2e9494ca1ee0b10424a72a5c1e49eb54a (patch) | |
| tree | 2e7f6419ee92d28398b824c18d94aae959e96372 /archaeological_finds/templates/ishtar/sheet_find.html | |
| parent | 8afe0cd9b3e515b121cdf0e1f95850d28b9e84a7 (diff) | |
| parent | a408afc5c3c964581ba99eb3d65a821e9f4561ac (diff) | |
| download | Ishtar-1d2864b2e9494ca1ee0b10424a72a5c1e49eb54a.tar.bz2 Ishtar-1d2864b2e9494ca1ee0b10424a72a5c1e49eb54a.zip | |
Merge branch 'master' into v0.9
Diffstat (limited to 'archaeological_finds/templates/ishtar/sheet_find.html')
| -rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index f7c3838b8..85647ac61 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -69,8 +69,10 @@ <h3>{% trans "Treatments"%}</h3> {% if item.upstream_treatment %} -<table class='simple' id='{{window_id}}-upstream'> - <caption>{% trans "Upstream treatment" %}</caption> +<h4>{% trans "Upstream treatment" %}</h4> +<div class='clean-table'> +<div class='clean-table-wrap'> +<table id='{{window_id}}-upstream'> <tr> <th>{% trans "Type" %}</th> <th>{% trans "Related finds" %}</th> @@ -90,12 +92,16 @@ </tr> {% endfor %} </table> +</div> +</div> <p class='tool'><a class='badge' href="{% url 'get-upstreamtreatment' 'csv' %}?submited=1&find_id={{item.pk}}" target="_blank" title='{% trans "Export as CSV"%}'>{% trans "CSV" %}</a> ({{ENCODING}})</p> {% endif %} {% if item.downstream_treatment %} -<table class='simple' id='{{window_id}}-downstream'> - <caption>{% trans "Downstream treatment" %}</caption> +<h4>{% trans "Downstream treatment" %}</h4> +<div class='clean-table'> +<div class='clean-table-wrap'> +<table id='{{window_id}}-downstream'> <tr> <th>{% trans "Type" %}</th> <th>{% trans "Related finds" %}</th> @@ -115,6 +121,9 @@ </tr> {% endfor %} </table> +</div> +</div> + <p class='tool'><a class='badge' href="{% url 'get-downstreamtreatment' 'csv' %}?submited=1&find_id={{item.pk}}" target="_blank">{% trans "CSV" %}</a> ({{ENCODING}})</p> {% endif %} |
