views:

936

answers:

1

I am following this tutorial:

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

but I get this error:

Error: No module named messages

.

And in django/contrib folder effectively there isn't a messages app.

How can I get work message framework ?

+6  A: 

The message framwork is added in the development version and will be available in django 1.2, so you could download the latest svn version or the 1.2 Release candidates (preferable). More info on this can be found here.

In django 1.1 (current stable version), a less advanced message framework coupled more tightly to the user model is used, you can find more info about that here.

KillianDS