Answers for "django message tag cbv"

1

message tags in django

from django.contrib.messages import constants as messages

MESSAGE_TAGS = {
    messages.DEBUG: 'alert-info',
    messages.INFO: 'alert-info',
    messages.SUCCESS: 'alert-success',
    messages.WARNING: 'alert-warning',
    messages.ERROR: 'alert-danger',
}
Posted by: Guest on December-08-2020
0

django MESSAGE_TAGS

from django.contrib.messages import constants as message_constants
MESSAGE_TAGS = {message_constants.INFO: ''}
Posted by: Guest on December-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language