summaryrefslogtreecommitdiff
path: root/templates/edit_fieldsets.html
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-03-03 23:28:11 +0100
committerLeif Johansson <leifj@sunet.se>2011-03-03 23:28:11 +0100
commitd60a62a68a5c3442a6b464cca1c1a218d57d8ecc (patch)
treebc7f4d62751fff095bfcd547a95714b19e5b5487 /templates/edit_fieldsets.html
parent5bf172664d789d10781441e2a812f626c15c8da6 (diff)
new acl UI
Diffstat (limited to 'templates/edit_fieldsets.html')
-rw-r--r--templates/edit_fieldsets.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/edit_fieldsets.html b/templates/edit_fieldsets.html
index d528a4c..0a8186f 100644
--- a/templates/edit_fieldsets.html
+++ b/templates/edit_fieldsets.html
@@ -3,8 +3,8 @@
{% block content %}
{% block beforeform %}
{% endblock %}
- <div class="infopanel">
- <form method="POST" id="wizard" class="bbq" style="padding: 5px;">
+ <div>
+ <form method="POST" id="wizard" class="bbq formpadding">
<h1>{{formtitle}}</h1>
{% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %}
{% for fieldset in form.fieldsets %}
@@ -22,9 +22,9 @@
{% else %}
<li class="links {% if field.field.required %}required{% endif %}" {{ field.row_attrs }}>
{{ field.errors }}
- <label for="id_{{ field.html_name }}">{{ field.label }}
+ <label for="id_{{ field.html_name }}" class="fieldlabel">{{ field.label }}
{% if field.field.required %}<b>*</b>{% endif %}</label>
- {{ field }}
+ <div class="fieldinput">{{ field }}</div>
</li>
{% endif %}
{% endfor %}