aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/display_errors.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2017-02-15 20:42:48 +0100
committerGitHub <noreply@github.com>2017-02-15 20:42:48 +0100
commit3dd7c67ecf5e2c5d21ec387bbd82e0fa3b90ad5b (patch)
treef15a0a568faf6ea5e0c14abcef274f0c658c4b3f /budget/templates/display_errors.html
parentbb5ad597f5b1f20e741be0b8ac1f54c1538df4a3 (diff)
parent57596b5f46555b2163c849c83f97ac5d779d9b25 (diff)
downloadihatemoney-mirror-3dd7c67ecf5e2c5d21ec387bbd82e0fa3b90ad5b.zip
ihatemoney-mirror-3dd7c67ecf5e2c5d21ec387bbd82e0fa3b90ad5b.tar.gz
ihatemoney-mirror-3dd7c67ecf5e2c5d21ec387bbd82e0fa3b90ad5b.tar.bz2
Merge pull request #172 from JocelynDelalande/jd-bootstrap-4
WIP: Upgrade to bootstrap 4
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 %}