On Wed, 2008-10-15 at 10:43 +0200, Mirto Silvio Busico wrote:
> As said in my previous message you are right: I don't have a valid reques.
> So I'm sure I'm doing something wrong.
> Here is what I'm doing:
> 
> In zsite/ancore/url.py:
>         (r'^$', 'zsite.ancore.views.indice'),
> 
> In zsite/ancore/views.py:
> 
>     @login_required
>     def indice(request):
>         xxx=request.user.get_and_delete_messages()
>         return render_to_response("ancore/index.html", { 'title' :
>     'ANCORE','messages' : xxx}, context_instance=RequestContext(request))

Have another read of the documentation for RequestContext ([1]) and the
context processors that are installed by default.

[1] http://docs.djangoproject.com/en/dev/ref/templates/api/#id1

None of those context processors puts the "request" object itself into
your template context. So you'll either need to write another context
processor, if you want "request" included all the time, or just pass it
in manually.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to