summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2026-04-24 17:03:46 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2026-04-24 17:03:46 +0200
commitc9db6e5bdb9182cd2d38c1daf1096350cf13a4a7 (patch)
treedebdad5d9d5fda4c1fe3e9d4e168fb48ec2a8c1e
parent14eb8da0f0db27c03fc23628be88b85e0e1169ae (diff)
downloadIshtar-c9db6e5bdb9182cd2d38c1daf1096350cf13a4a7.tar.bz2
Ishtar-c9db6e5bdb9182cd2d38c1daf1096350cf13a4a7.zip
🐛 sheet find: appraisal date format fix (refs #6721)
-rw-r--r--archaeological_finds/templates/ishtar/sheet_find_treatments.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find_treatments.html b/archaeological_finds/templates/ishtar/sheet_find_treatments.html
index 670c1997b..3873b1770 100644
--- a/archaeological_finds/templates/ishtar/sheet_find_treatments.html
+++ b/archaeological_finds/templates/ishtar/sheet_find_treatments.html
@@ -22,7 +22,7 @@
{% field_flex _("Treatment emergency") item.treatment_emergency %}
{% field_flex _("Estimated value") item.estimated_value|default_if_none:''|intcomma '' ' '|add:CURRENCY %}
{% field_flex _("Insurance value") item.insurance_value|default_if_none:''|intcomma '' ' '|add:CURRENCY %}
- {% field_flex _("Appraisal date") item.appraisal_date %}
+ {% field_flex _("Appraisal date") item.appraisal_date|date:"SHORT_DATE_FORMAT" %}
{% field_flex_full _("Conservatory comment") item.conservatory_comment "<pre>" "</pre>" %}
</div>
{% endif %}