Message structure: no module messages

I am following this tutorial:

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

but I am getting this error:

Error: No module named messages

      

...

And there is effectively no messaging app in the django / contrib folder.

How can I get the structure of work messages?

+2


a source to share


1 answer


The messaging framework has been added in the development version and will be available in django 1.2 so you can download the latest svn or 1.2 Release (preferred). You can learn more about this here .



Django 1.1 (current stable release) uses a less advanced message structure more closely related to the custom model, you can find more information on this here .

+7


a source







All Articles