Merge branch 'messages' into 'master'

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

See merge request allianceauth/allianceauth!1362
This commit is contained in:
Ariel Rin 2021-11-20 01:13:27 +00:00
commit 52ae05d057
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
MESSAGE_TAGS = {
messages.ERROR: 'danger'
messages.ERROR: 'danger error'
}
CACHES = {

View File

@ -13,7 +13,7 @@
<i class="fas fa-check-circle"></i>
{% elif message.level_tag == "warning" %}
<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>
{% endif %}
</div>