diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-10-28 02:28:08 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-10-28 02:28:08 +0100 |
commit | 4910072c29e064ff743ecd8affb7418a735a5e5d (patch) | |
tree | 79d40d45e44ee16a245987feda1d279f5b5fe6b5 /archaeological_finds | |
parent | 003896dffef54abeb04409bdabd485723eaf8805 (diff) | |
download | Ishtar-4910072c29e064ff743ecd8affb7418a735a5e5d.tar.bz2 Ishtar-4910072c29e064ff743ecd8affb7418a735a5e5d.zip |
Better title for sheets (refs #1372)
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index da1e91cc5..7e45637d8 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -1,6 +1,11 @@ {% extends "ishtar/sheet.html" %} {% load i18n %} +{% block head_sheet %} +{{block.super}} +<h1>{% trans "Find"%}</h1> +{% endblock %} + {% block content %} {% if previous or next %} @@ -18,8 +23,6 @@ <div class='tool'>{%trans "Export as:"%} <a href='{% url show-find item.pk "odt" %}'>{%trans "OpenOffice.org file"%}</a>, <a href='{% url show-find item.pk "pdf" %}'>{%trans "PDF file"%}</a></div> -<h3>{% trans "Find"%}</h3> - {% if item.image %} <a href='{{item.image.url}}' rel="prettyPhoto" title="{{item.label}}"><img src='{{item.thumbnail.url}}'/></a> {% endif%} |