Python django.contrib.messages.constants.DEFAULT_LEVELS Examples

The following are 8 code examples of django.contrib.messages.constants.DEFAULT_LEVELS(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module django.contrib.messages.constants , or try the search function .
Example #1
Source File: context_processors.py    From GTDWeb with GNU General Public License v2.0 5 votes vote down vote up
def messages(request):
    """
    Returns a lazy 'messages' context variable.
    """
    return {
        'messages': get_messages(request),
        'DEFAULT_MESSAGE_LEVELS': DEFAULT_LEVELS,
    } 
Example #2
Source File: context_processors.py    From bioforum with MIT License 5 votes vote down vote up
def messages(request):
    """
    Return a lazy 'messages' context variable as well as
    'DEFAULT_MESSAGE_LEVELS'.
    """
    return {
        'messages': get_messages(request),
        'DEFAULT_MESSAGE_LEVELS': DEFAULT_LEVELS,
    } 
Example #3
Source File: context_processors.py    From Hands-On-Application-Development-with-PyCharm with MIT License 5 votes vote down vote up
def messages(request):
    """
    Return a lazy 'messages' context variable as well as
    'DEFAULT_MESSAGE_LEVELS'.
    """
    return {
        'messages': get_messages(request),
        'DEFAULT_MESSAGE_LEVELS': DEFAULT_LEVELS,
    } 
Example #4
Source File: context_processors.py    From django-user-messages with MIT License 5 votes vote down vote up
def messages(request):
    """
    Return a lazy 'messages' context variable as well as
    'DEFAULT_MESSAGE_LEVELS'.
    """
    return {
        "messages": get_messages(request=request),
        "DEFAULT_MESSAGE_LEVELS": DEFAULT_LEVELS,
    } 
Example #5
Source File: context_processors.py    From openhgsenti with Apache License 2.0 5 votes vote down vote up
def messages(request):
    """
    Returns a lazy 'messages' context variable.
    """
    return {
        'messages': get_messages(request),
        'DEFAULT_MESSAGE_LEVELS': DEFAULT_LEVELS,
    } 
Example #6
Source File: context_processors.py    From python2017 with MIT License 5 votes vote down vote up
def messages(request):
    """
    Returns a lazy 'messages' context variable.
    """
    return {
        'messages': get_messages(request),
        'DEFAULT_MESSAGE_LEVELS': DEFAULT_LEVELS,
    } 
Example #7
Source File: base.py    From djongo with GNU Affero General Public License v3.0 5 votes vote down vote up
def test_context_processor_message_levels(self):
        show_url = reverse('show_template_response')
        response = self.client.get(show_url)

        self.assertIn('DEFAULT_MESSAGE_LEVELS', response.context)
        self.assertEqual(response.context['DEFAULT_MESSAGE_LEVELS'], DEFAULT_LEVELS) 
Example #8
Source File: base.py    From djongo with GNU Affero General Public License v3.0 5 votes vote down vote up
def test_context_processor_message_levels(self):
        show_url = reverse('show_template_response')
        response = self.client.get(show_url)

        self.assertIn('DEFAULT_MESSAGE_LEVELS', response.context)
        self.assertEqual(response.context['DEFAULT_MESSAGE_LEVELS'], DEFAULT_LEVELS)