RE: Django Template CSS Load Path

2011-01-30 Thread Chris Matthews
ct: Re: Django Template CSS Load Path I still cannot get the css page to load. On Jan 19, 4:02 pm, Matías Iturburu <maturb...@gmail.com> wrote: > On Wed, Jan 19, 2011 at 5:30 PM, Eduardo Cereto Carvalho < > > eduardocer...@gmail.com> wrote: > > You can use MEDIA_URL conf t

Re: Django Template CSS Load Path

2011-01-29 Thread octopusgrabbus
Interestingly, I added TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_processors.request', 'django.core.context_processors.media', ) to my settings.py and got this error. Put 'django.contrib.auth.context_processors.auth' in your TEMPLATE_CONTEXT_PROCESSORS setting in order to use

Re: Django Template CSS Load Path

2011-01-29 Thread octopusgrabbus
I still cannot get the css page to load. On Jan 19, 4:02 pm, Matías Iturburu wrote: > On Wed, Jan 19, 2011 at 5:30 PM, Eduardo Cereto Carvalho < > > eduardocer...@gmail.com> wrote: > > You can use MEDIA_URL conf to get the root path to your media files. > > > > /> > My

Re: Django Template CSS Load Path

2011-01-19 Thread Matías Iturburu
On Wed, Jan 19, 2011 at 5:30 PM, Eduardo Cereto Carvalho < eduardocer...@gmail.com> wrote: > You can use MEDIA_URL conf to get the root path to your media files. > > /> > > the above code is correct, just make sure that you are using the media context processor or returning a RequestContext, not

Re: Django Template CSS Load Path

2011-01-19 Thread Eduardo Cereto Carvalho
You can use MEDIA_URL conf to get the root path to your media files. On Wed, Jan 19, 2011 at 5:55 PM, octopusgrabbus wrote: > I am trying to load a css file in my base.html template > > > > >{% block title %}Test{% endblock %} > > > >