diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-02-22 15:47:13 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-02-22 15:47:13 +0100 |
commit | 470e4acc04bb0d76fe9968fc91da17f037a33cc5 (patch) | |
tree | 6585b6bf56e0cef9f2de02c01a487b52064e18da /archaeological_finds/templates | |
parent | f9b40564a6abf76a1bdb016c6061a7679430ca1b (diff) | |
download | Ishtar-470e4acc04bb0d76fe9968fc91da17f037a33cc5.tar.bz2 Ishtar-470e4acc04bb0d76fe9968fc91da17f037a33cc5.zip |
Update translations
Diffstat (limited to 'archaeological_finds/templates')
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index 79d581c6d..0bc26b58c 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -55,11 +55,12 @@ {% field_flex_multiple "Remarkability" item.remarkabilities %} {% field_flex_multiple "Communicability" item.communicabilities %} {% field_flex "Estimated value" item.estimated_value|default_if_none:''|intcomma '' ' '|add:CURRENCY %} + {% trans "Checked" as checked_label %} {% if item.CHECK_DICT %} - {% field_flex "Checked" item.checked|from_dict:item.CHECK_DICT %} + {% field_flex checked_label item.checked|from_dict:item.CHECK_DICT %} {% endif%} {% if item.history_object and item.history_object.CHECK_DICT %} - {% field_flex "Checked" item.checked|from_dict:item.history_object.CHECK_DICT %} + {% field_flex checked_label item.checked|from_dict:item.history_object.CHECK_DICT %} {% endif%} {% field_flex_full "Description" item.description "<pre>" "</pre>" %} {% field_flex_full "Comment" item.comment "<pre>" "</pre>" %} |