aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/wiki/includes
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-12 11:46:39 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-12 11:46:39 +0100
commita27d88923c6451d450d9155adb0ccd9fd0dcaa5f (patch)
treee770515b883a869d97810004fce2565891211074 /pydis_site/templates/wiki/includes
parentSmall typos in char field (diff)
Finish initial article creation form
Diffstat (limited to 'pydis_site/templates/wiki/includes')
-rw-r--r--pydis_site/templates/wiki/includes/formfield.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pydis_site/templates/wiki/includes/formfield.html b/pydis_site/templates/wiki/includes/formfield.html
index 0176f9d4..9f68fb26 100644
--- a/pydis_site/templates/wiki/includes/formfield.html
+++ b/pydis_site/templates/wiki/includes/formfield.html
@@ -7,7 +7,7 @@
<div class="field-label">
{% if field.label %}
<label for="div_{{ field.auto_id }}" class="label {% if field.errors %} is-danger{% endif %}">
- {{ field.label | safe }} {% if field.field.required %}<span class="asterisk">*</span>{% endif %}
+ {{ field.label | safe }} {% if field.field.required %}<span class="asterisk has-text-danger">*</span>{% endif %}
</label>
{% endif %}
@@ -23,7 +23,6 @@
<div class="control">
{% render_field field %}
</div>
- </div>
{% if field.errors %}
<p class="help is-danger">
@@ -32,6 +31,7 @@
{% endfor %}
</p>
{% endif %}
+ </div>
</div>
</div>
{% endif %}