diff options
| author | Jocelyn Delalande <jocelyn@crapouillou.net> | 2017-02-01 19:41:55 +0100 |
|---|---|---|
| committer | Jocelyn Delalande <jocelyn@crapouillou.net> | 2017-02-04 00:41:05 +0100 |
| commit | 286213026982435e6e87cdbbd5dddcd80e925b91 (patch) | |
| tree | 0afd5f1693f69629b2a8fd45c82d81ef5a288852 /budget/templates/display_errors.html | |
| parent | 37da1db38ac17209f6ab6832a0bf5052ae81475b (diff) | |
| download | ihatemoney-mirror-286213026982435e6e87cdbbd5dddcd80e925b91.zip ihatemoney-mirror-286213026982435e6e87cdbbd5dddcd80e925b91.tar.gz ihatemoney-mirror-286213026982435e6e87cdbbd5dddcd80e925b91.tar.bz2 | |
Adapt to bootstrap 4 forms
- Adapt to BS4 class names and hierarchy
- Redesign some forms to have the label above the input (mobile-friendly)
- For the remaining inline form (add bill), use the grid, as BS no longer
provides inline form alignment helpers
Diffstat (limited to 'budget/templates/display_errors.html')
| -rw-r--r-- | budget/templates/display_errors.html | 2 |
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 %} |
