From 875462381bc57b13a8ca6b68a52ad1ca065ef95e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 7 Jun 2018 16:52:02 +0200 Subject: Document form: add related fields (refs #4107) --- ishtar_common/templates/ishtar/forms/document.html | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 ishtar_common/templates/ishtar/forms/document.html (limited to 'ishtar_common/templates/ishtar/forms') diff --git a/ishtar_common/templates/ishtar/forms/document.html b/ishtar_common/templates/ishtar/forms/document.html new file mode 100644 index 000000000..38bb3cacf --- /dev/null +++ b/ishtar_common/templates/ishtar/forms/document.html @@ -0,0 +1,38 @@ +{% extends "base.html" %} +{% load i18n inline_formset table_form %} +{% block extra_head %} +{{form.media}} +{% endblock %} + +{% block pre_container %} +
{% csrf_token %} +{% endblock %} +{% block content %} +

{{page_name}}

+
+ {% for error in form.non_field_errors %} +

{{ error }}

+ {% endfor %} + {% bs_form form %} +
+{% endblock %} + +{% block footer %} + +
+{% endblock %} + -- cgit v1.2.3