diff options
-rw-r--r-- | archaeological_operations/templates/ishtar/sheet_administrativeact.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/archaeological_operations/templates/ishtar/sheet_administrativeact.html b/archaeological_operations/templates/ishtar/sheet_administrativeact.html index 2c52ffae7..1044a3dad 100644 --- a/archaeological_operations/templates/ishtar/sheet_administrativeact.html +++ b/archaeological_operations/templates/ishtar/sheet_administrativeact.html @@ -45,7 +45,9 @@ {% field_flex "Type" item.act_type %} {% field_flex "Object" item.act_object %} {% field_flex_detail "Signatory" item.signatory %} - {% field_flex "Signature date" item.signature_date %} + {% with signature_date=item.signature_date|date:"DATE_FORMAT"|default:"" %} + {% field_flex "Signature date" signature_date %} + {% endwith %} {% field_flex "In charge" item.in_charge %} {% field_flex "Archaeological preventive operator" item.operator %} {% field_flex_detail "Associated file" item.associated_file %} @@ -69,6 +71,10 @@ {% endcomment %} {% field_flex_full "Comment" item.comment "<pre>" "</pre>" %} </div> + {% if item.json_sections %} + <h3>{% trans "Custom fields" %}</h3> + {% include "ishtar/blocks/sheet_json.html" %} + {% endif %} </div> {% if item.documents.count %} <div class="row spacer"> |