ISO-27001-Risk-Management/.venv/lib/python3.11/site-packages/django/contrib/messages/utils.py
2025-09-24 18:13:40 +02:00

12 lines
256 B
Python

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", {}),
}