summaryrefslogtreecommitdiff
path: root/templates/edit_fieldsets.html
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-06-14 17:47:57 +0200
committerLeif Johansson <leifj@sunet.se>2011-06-14 17:47:57 +0200
commit6282eb19b4611f756613e59a352063d175a33ba9 (patch)
tree79b65cbf9f3e4ebe9038722927c99a6e78719eb8 /templates/edit_fieldsets.html
parentc1f586f093e6ab3a37df1d3ea3e2f9c0185f9f62 (diff)
generalize fieldset into class
Diffstat (limited to 'templates/edit_fieldsets.html')
-rw-r--r--templates/edit_fieldsets.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/edit_fieldsets.html b/templates/edit_fieldsets.html
index f0ab8cb..54ab744 100644
--- a/templates/edit_fieldsets.html
+++ b/templates/edit_fieldsets.html
@@ -3,11 +3,11 @@
{% block content %}
{% block beforeform %}
{% endblock %}
+ <h2>{{formtitle}}</h2>
<form method="POST" id="wizard" class="bbq infopanel">
- <h1>{{formtitle}}</h1>
{% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %}
{% for fieldset in form.fieldsets %}
- <fieldset id="{{fieldset.name}}" class="{{ fieldset.classes }}">
+ <fieldset id="{{fieldset.name}}" class="fieldset {{ fieldset.classes }}">
{% if fieldset.legend %}
<legend class="ui-state-highlight ui-corner-all">{{ fieldset.legend }}</legend>
{% endif %}