From 48eb91979705f9999b724c8e2f960fd7931775c1 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sun, 21 Oct 2012 01:31:49 +0200 Subject: Djangoization - Major refactoring (step 7) Work on archaeological_files wizards --- ishtar_common/templates/ishtar/wizard/search.html | 29 +++++++++++++++++++++++ ishtar_common/templates/search.html | 28 ---------------------- 2 files changed, 29 insertions(+), 28 deletions(-) create mode 100644 ishtar_common/templates/ishtar/wizard/search.html delete mode 100644 ishtar_common/templates/search.html (limited to 'ishtar_common/templates') diff --git a/ishtar_common/templates/ishtar/wizard/search.html b/ishtar_common/templates/ishtar/wizard/search.html new file mode 100644 index 000000000..7ed214a48 --- /dev/null +++ b/ishtar_common/templates/ishtar/wizard/search.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} +{% load i18n %} +{% load range %} +{% block extra_head %} +{{wizard.form.media}} +{% endblock %} +{% block content %} +

{{wizard_label}}

+ +
+{% if wizard.form.forms %} +
+ + {%if wizard.form.non_form_errors%}{%endif%} + {{ wizard.form.management_form }} + {% for formsetform in wizard.form.forms %} + {{ formsetform.as_table }} + {% endfor %} + +
{{wizard.form.non_form_errors}}
+{% else %} + + {{ wizard.form.as_table }} +
+{% endif %} +
+{% endblock %} diff --git a/ishtar_common/templates/search.html b/ishtar_common/templates/search.html deleted file mode 100644 index 1b5829820..000000000 --- a/ishtar_common/templates/search.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} -{% load range %} -{% block extra_head %} -{{form.media}} -{% endblock %} -{% block content %} - -
-{% if form.forms %} -
- - {%if form.non_form_errors%}{%endif%} - {{ form.management_form }} - {% for formsetform in form.forms %} - {{ formsetform.as_table }} - {% endfor %} - -
{{form.non_form_errors}}
-{% else %} - - {{ form.as_table }} -
-{% endif %} -
-{% endblock %} -- cgit v1.2.3