blob: 0dd887357682f03f05c4b4db71fea99ef86aa13b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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", {}),
}
|