On Jan 4, 4:19 pm, Peter Rowell <[EMAIL PROTECTED]> wrote:
> > (3) Imported the RequestContext object in my views.py file:
>
> > from django.template import Template, Context, RequestContext
>
> I know this is a silly question, but did you *use* RequestContext, or
> just import it?
>
> E.g.
> return render_to_response('base.html',
> RequestContext(request, {'stuff': stuff, } ) )
Thanks for the fast response, no I was not actually using it, I
thought it got added automatically to any template being rendered. But
after I do that:
return render_to_response('index.html', renderParams,
RequestContext(request))
I'm now getting the following error:
Exception Type: ImproperlyConfigured
Exception Value: Module "django.core.context_processors" does not
define a "media" callable request processor
Exception Location: /Library/Frameworks/Python.framework/Versions/2.5/
lib/python2.5/site-packages/django/template/context.py in
get_standard_processors, line 81
Looking at the source code, it certainly looks like it DOES provide a
'media' function (I have 0.96 installed):
def media(request):
"""
Adds media-related context variables to the context.
"""
return {'MEDIA_URL': settings.MEDIA_URL}
Well, if I can't get this working I suppose I can just stuff the
settings.MEDIA_URL variable into each template render by placing it
into the render dictionary myself each time, or worst-case I can hard-
code the media paths, but I'd still like to know why it's not working.
I've had nothing but headaches with MEDIA_URL and associated settings,
I tried for a long time to get static media serving on the dev server,
but it never worked.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---