| DIR:/proc/thread-self/root/usr/local/lib/python3.6/site-packages/django/contrib/messages/ |
| Current File : //proc/thread-self/root/usr/local/lib/python3.6/site-packages/django/contrib/messages/utils.py |
from django.conf import settings
from django.contrib.messages import constants
def get_level_tags():
"""
Return the message level tags.
"""
return {
**constants.DEFAULT_TAGS,
**getattr(settings, 'MESSAGE_TAGS', {}),
}
|