aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/display_errors.html
diff options
context:
space:
mode:
Diffstat (limited to 'budget/templates/display_errors.html')
-rw-r--r--budget/templates/display_errors.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/budget/templates/display_errors.html b/budget/templates/display_errors.html
index bc65a3a..9e19605 100644
--- a/budget/templates/display_errors.html
+++ b/budget/templates/display_errors.html
@@ -1,5 +1,5 @@
{% for field_name, field_errors in form.errors.items() if field_errors %}
{% for error in field_errors %}
- <p class="error">{{ form[field_name].label.text }}: {{ error }}</p>
+ <p class="alert alert-danger"><strong>{{ form[field_name].label.text }}:</strong> {{ error }}</p>
{% endfor %}
{% endfor %}