summaryrefslogtreecommitdiff
path: root/src/templates/form.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/form.html')
-rw-r--r--src/templates/form.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/templates/form.html b/src/templates/form.html
index 077cd53..2e1e243 100644
--- a/src/templates/form.html
+++ b/src/templates/form.html
@@ -18,10 +18,9 @@
{% if field.is_hidden %}
{{ field }}
{% else %}
- <li class="links {% if field.field.required %}required{% endif %}" {{ field.row_attrs }}>
+ <li class="links {% if field.field.required %}required{% endif %}" {{ field.row_attrs }} style="margin-bottom: 10px;">
{{ field.errors }}
- <label for="id_{{ field.html_name }}" class="fieldlabel">{{ field.label }}
- {% if field.field.required %}<b>*</b>{% endif %}</label>
+ <label for="id_{{ field.html_name }}" class="fieldlabel" style="border-bottom: 1px solid #CECECE;"><em>{{ field.label }}{% if field.field.required %}<b>*</b>{% endif %}</em></label>
<div class="fieldinput">{{ field }}</div>
</li>
{% endif %}