From c9db6e5bdb9182cd2d38c1daf1096350cf13a4a7 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 24 Apr 2026 17:03:46 +0200 Subject: 🐛 sheet find: appraisal date format fix (refs #6721) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_finds/templates/ishtar/sheet_find_treatments.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "
" "
" %} {% endif %} -- cgit v1.2.3