diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-01-10 16:23:15 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-01-10 16:23:15 +0100 |
commit | 08714316474e41d7c88396e33650e785e284e7b2 (patch) | |
tree | fa543c9db03586c9faef30578e1a2f429c8b6549 | |
parent | 316f2d1fe2043692dee01d7488fc10834c10cb01 (diff) | |
download | Ishtar-08714316474e41d7c88396e33650e785e284e7b2.tar.bz2 Ishtar-08714316474e41d7c88396e33650e785e284e7b2.zip |
Archaeological operation window: add alternate reference (refs #1606)
-rw-r--r-- | archaeological_files/templates/ishtar/sheet_file.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/archaeological_files/templates/ishtar/sheet_file.html b/archaeological_files/templates/ishtar/sheet_file.html index a83ce3df3..e8ddca99a 100644 --- a/archaeological_files/templates/ishtar/sheet_file.html +++ b/archaeological_files/templates/ishtar/sheet_file.html @@ -22,10 +22,11 @@ <div class='tool'>{%trans "Export as:"%} <a href='{% url show-file item.pk "odt" %}'>{%trans "OpenOffice.org file"%}</a>, <a href='{% url show-file item.pk "pdf" %}'>{%trans "PDF file"%}</a></div> <div class='tool modify'><a href='{% url file_modify item.pk %}'>{% trans "Modify" %}</a></div> <h3>{% trans "General"%}</h3> -<p><label>{%trans "Year:"%}</label> <span class='value'>{{ item.year }}</span></p> -{% if item.numeric_reference %}<p><label>{%trans "Numerical reference:"%}</label> <span class='value'>{{ item.numeric_reference }}</span></p>{% endif %} +<p><label>{%trans "Year:"%}</label> <span class='value strong'>{{ item.year }}</span></p> +{% if item.numeric_reference %}<p><label>{%trans "Numerical reference:"%}</label> <span class='value strong'>{{ item.numeric_reference }}</span></p>{% endif %} +{% if item.internal_reference %}<p><label>{%trans "Other reference:"%}</label> <span class='value'>{{ item.internal_reference }}</span></p>{% endif %} {% if item.name %} -<p><label>{%trans "File's name:"%}</label> <span class='value'>{{ item.name }}</span></p> +<p><label>{%trans "Name:"%}</label> <span class='value'>{{ item.name }}</span></p> {% endif %} <p><label>{%trans "Edition date:"%}</label> <span class='value'>{{ item.history_date }}</span></p> <!-- date = now --> {% if item.reception_date %}<p><label>{%trans "Reception date:"%}</label> <span class='value'>{{ item.reception_date }}</span></p>{% endif %} |