summaryrefslogtreecommitdiff
path: root/templates/edit_fieldsets.html
diff options
context:
space:
mode:
authorJohan Berggren <jbn@nordu.net>2011-03-04 14:38:19 +0100
committerJohan Berggren <jbn@nordu.net>2011-03-04 14:38:19 +0100
commit613ab889ea717c86cda5b61332027581d6eb61e8 (patch)
treef46c11bc3bdb97e5fcdd7c8c0c470cf7d28bec29 /templates/edit_fieldsets.html
parent07a04353ebacf6769683b55694d5aa78139d1d4f (diff)
parentf0dd7b2469b6d276fdfdc0a0dc4da5101ce272cc (diff)
Merge branch 'master' of git.nordu.net:coip
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 %}