diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-01-20 11:55:30 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-01-20 11:55:30 +0100 |
commit | 7992cf0c1bfb237c6f89e84529f4766d6f8b6624 (patch) | |
tree | 089ab4b9971303c7e11d588a4de501271ed16d4f /archaeological_finds/templates | |
parent | af04b1ecfc22f8c104f6f960c26086c4284e9777 (diff) | |
download | Ishtar-7992cf0c1bfb237c6f89e84529f4766d6f8b6624.tar.bz2 Ishtar-7992cf0c1bfb237c6f89e84529f4766d6f8b6624.zip |
Sheet find: fix material type history
Diffstat (limited to 'archaeological_finds/templates')
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index e6856dd53..b4954b7e6 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -174,7 +174,8 @@ {% field_flex_full "Public description" item.public_description "<pre>" "</pre>" %} {% field_flex "Is complete?" item.is_complete %} {% with material=item.get_hierarchical_material_types %}{% if material %} - {% field_flex "Material types" material %} + {% field_flex "Material types" material %}{% else %} + {% field_flex_multiple_obj "Material types" item 'material_types' %} {% endif %}{% endwith %} {% field_flex "Material type quality" item.material_type_quality %} {% field_flex_full "Comment on the material" item.material_comment "<pre>" "</pre>" %} |