Use danger and error message tags to render correctly on admin site.

Closes #1305


(cherry picked from commit f17ebbede6d675f6308f41b3e72b78758642ef60)
This commit is contained in:
Adarnof 2021-11-03 21:02:03 -04:00 committed by Ariel Rin
parent 2bd2c09c23
commit abb5090d63
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static')
# Bootstrap messaging css workaround # Bootstrap messaging css workaround
MESSAGE_TAGS = { MESSAGE_TAGS = {
messages.ERROR: 'danger' messages.ERROR: 'danger error'
} }
CACHES = { CACHES = {

View File

@ -13,7 +13,7 @@
<i class="fas fa-check-circle"></i> <i class="fas fa-check-circle"></i>
{% elif message.level_tag == "warning" %} {% elif message.level_tag == "warning" %}
<i class="fas fa-exclamation-circle"></i> <i class="fas fa-exclamation-circle"></i>
{% elif message.level_tag == "danger" %} {% elif "danger" in message.level_tag %}
<i class="fas fa-exclamation-triangle"></i> <i class="fas fa-exclamation-triangle"></i>
{% endif %} {% endif %}
</div> </div>