diff --git a/static/css/main.css b/static/css/main.css
index 0b3fab0..f76b1b8 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -6,3 +6,7 @@ html {
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
+
+label {
+ font-weight: bold;
+}
diff --git a/templates/form.html b/templates/form.html
index de5e909..328dff1 100644
--- a/templates/form.html
+++ b/templates/form.html
@@ -7,7 +7,7 @@
{%- macro form_field_description(field) -%}
{% if field.description %}
- {{ field.description }}
+ {{ field.description }}
{% endif %}
{%- endmacro -%}
@@ -42,6 +42,7 @@
{% else %}
{{ form_field_label(field) }}
+ {{ form_field_description(field) }}
{% if field.type == 'RadioField' %}
{{ field(class='radio-group', **attrs) }}
{% elif field.type == 'IntegerField' %}
@@ -49,7 +50,6 @@
{% else %}
{{ field(**attrs) }}
{% endif %}
- {{ form_field_description(field) }}
{{ form_field_errors(field) }}
{% endif %}
@@ -60,7 +60,10 @@
{%- macro form_fieldset(fieldset) -%}