Problem with messages framework in Django 1.2

Posted by Konstantin on Stack Overflow See other posts from Stack Overflow or by Konstantin
Published on 2010-03-16T11:54:17Z Indexed on 2010/03/16 11:56 UTC
Read the original article Hit count: 505

Filed under:
|

Hello!

I'm running Django 1.2 beta and trying out the new feature: message framework.

http://docs.djangoproject.com/en/dev/ref/contrib/messages/

Everything seems to work, but when I try to output the messages, I get nothing. Seems that messages variable is empty. I double checked all the settings, they seem to be just like in the manual. What could be wrong?

settings.py

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware', #send messages to users
    'django.middleware.locale.LocaleMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',

    #debug tool
    'debug_toolbar.middleware.DebugToolbarMiddleware',
)

TEMPLATE_CONTEXT_PROCESSORS = (
    'django.contrib.messages.context_processors.messages', #send messages to users
    'django.core.context_processors.auth',
)

#Store messages in sessions
MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage';

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    #'django.contrib.sites',
    'django.contrib.admin',
    'django.contrib.messages', 
    'debug_toolbar',

    #my apps
    #...
)

views.py

def myview(request):

    from django.contrib import messages

    messages.error(request, 'error test');   
    messages.success(request, 'success test');   

    return render_to_response('mytemplate.html', locals()); 

mytemplate.html

{% for message in messages %}
        {{ message }}<br />
{% endfor %}

In template nothing is outputted.

© Stack Overflow or respective owner

Related posts about django

Related posts about django-templates