summaryrefslogtreecommitdiff
path: root/archaeological_finds
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds')
-rw-r--r--archaeological_finds/locale/django.pot34
-rw-r--r--archaeological_finds/templates/ishtar/sheet_find.html17
2 files changed, 30 insertions, 21 deletions
diff --git a/archaeological_finds/locale/django.pot b/archaeological_finds/locale/django.pot
index b7a64ec92..19327cda6 100644
--- a/archaeological_finds/locale/django.pot
+++ b/archaeological_finds/locale/django.pot
@@ -142,12 +142,12 @@ msgid "Period"
msgstr ""
#: forms.py:180 forms.py:579 models.py:695 models.py:760 models.py:896
-#: templates/ishtar/sheet_find.html:79 templates/ishtar/sheet_find.html:104
+#: templates/ishtar/sheet_find.html:81 templates/ishtar/sheet_find.html:110
msgid "Start date"
msgstr ""
#: forms.py:182 forms.py:581 models.py:696 models.py:761 models.py:897
-#: templates/ishtar/sheet_find.html:80 templates/ishtar/sheet_find.html:105
+#: templates/ishtar/sheet_find.html:82 templates/ishtar/sheet_find.html:111
msgid "End date"
msgstr ""
@@ -284,7 +284,7 @@ msgid "Treatment type"
msgstr ""
#: forms.py:566 models.py:693 models.py:764
-#: templates/ishtar/sheet_find.html:77 templates/ishtar/sheet_find.html:102
+#: templates/ishtar/sheet_find.html:79 templates/ishtar/sheet_find.html:108
msgid "Doer"
msgstr ""
@@ -520,16 +520,16 @@ msgstr ""
msgid "Weight unit"
msgstr ""
-#: models.py:337 templates/ishtar/sheet_find.html:73
+#: models.py:337 templates/ishtar/sheet_find.html:72
msgid "Upstream treatment"
msgstr ""
-#: models.py:340 templates/ishtar/sheet_find.html:98
+#: models.py:340 templates/ishtar/sheet_find.html:101
msgid "Downstream treatment"
msgstr ""
#: models.py:344 models.py:679 models.py:763
-#: templates/ishtar/sheet_find.html:78 templates/ishtar/sheet_find.html:103
+#: templates/ishtar/sheet_find.html:80 templates/ishtar/sheet_find.html:109
msgid "Container"
msgstr ""
@@ -629,8 +629,8 @@ msgstr ""
msgid "by"
msgstr ""
-#: models.py:765 models.py:766 templates/ishtar/sheet_find.html:76
-#: templates/ishtar/sheet_find.html:101
+#: models.py:765 models.py:766 templates/ishtar/sheet_find.html:78
+#: templates/ishtar/sheet_find.html:107
msgid "Related finds"
msgstr ""
@@ -714,36 +714,36 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: templates/ishtar/sheet_find.html:75 templates/ishtar/sheet_find.html:100
-#: templates/ishtar/sheet_find.html:166
+#: templates/ishtar/sheet_find.html:77 templates/ishtar/sheet_find.html:106
+#: templates/ishtar/sheet_find.html:175
msgid "Type"
msgstr ""
-#: templates/ishtar/sheet_find.html:93
+#: templates/ishtar/sheet_find.html:97
msgid "Export as CSV"
msgstr ""
-#: templates/ishtar/sheet_find.html:93 templates/ishtar/sheet_find.html:118
+#: templates/ishtar/sheet_find.html:97 templates/ishtar/sheet_find.html:127
msgid "CSV"
msgstr ""
-#: templates/ishtar/sheet_find.html:123
+#: templates/ishtar/sheet_find.html:132
msgid "Associated base finds"
msgstr ""
-#: templates/ishtar/sheet_find.html:161 templates/ishtar/sheet_find.html:163
+#: templates/ishtar/sheet_find.html:170 templates/ishtar/sheet_find.html:172
msgid "Documents"
msgstr ""
-#: templates/ishtar/sheet_find.html:165
+#: templates/ishtar/sheet_find.html:174
msgid "Title"
msgstr ""
-#: templates/ishtar/sheet_find.html:167
+#: templates/ishtar/sheet_find.html:176
msgid "Authors"
msgstr ""
-#: templates/ishtar/sheet_find.html:168
+#: templates/ishtar/sheet_find.html:177
msgid "Link"
msgstr ""
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&amp;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&amp;find_id={{item.pk}}" target="_blank">{% trans "CSV" %}</a> ({{ENCODING}})</p>
{% endif %}