Re: loading the external css file

2011-01-31 Thread Ben Dembroski
Aha !! Is there a notice of this somewhere obvious on the website that I missed? Thanks again! -- Ben On Jan 31, 11:38 am, Łukasz Rekucki wrote: > On 31 January 2011 12:17, Ben Dembroski wrote: > > > Hi all, > > > I was having the same trouble (using version 1.2).  I double checked > > that I

Re: loading the external css file

2011-01-31 Thread Łukasz Rekucki
On 31 January 2011 12:17, Ben Dembroski wrote: > Hi all, > > I was having the same trouble (using version 1.2).  I double checked > that I was looking at the correct documentation: > > http://docs.djangoproject.com/en/1.2/howto/static-files/ Django 1.2 doesn't have (never did and won't have) the

Re: loading the external css file

2011-01-31 Thread Ben Dembroski
Hi all, I was having the same trouble (using version 1.2). I double checked that I was looking at the correct documentation: http://docs.djangoproject.com/en/1.2/howto/static-files/ and it does indicate that I should be truing to use django.contrib.staticfiles . Should I instead be using the d

Re: loading the external css file

2011-01-03 Thread Chris Lawlor
If you don't have a staticfiles module, you most likely aren't using Django 1.3. Make sure you select the correct version of Django when viewing the docs, as things are often done differently in older versions, but the doc pages usually default to the latest SVN release. On Dec 27 2010, 10:43 pm,

Re: loading the external css file

2010-12-27 Thread Bithu
When i was trying to set my static files. When i added the 'django.contrib.staticfiles' into INSTALLED_APP in my setting.py the development server was not running showing an error Error: No module named staticfiles. On Dec 27, 7:07 pm, Chris Lawlor wrote: > Django doesn't server static files (li

Re: loading the external css file

2010-12-27 Thread Emmanuel Mayssat
You template should all inherit from (aka extend) a base template. So include the html code for the ccs in the base template... -- Emmanuel Mayssat On Mon, Dec 27, 2010 at 6:07 AM, Chris Lawlor wrote: > Django doesn't server static files (like your CSS file) by default - > but you can configure t

Re: loading the external css file

2010-12-27 Thread Chris Lawlor
Django doesn't server static files (like your CSS file) by default - but you can configure the development server to do so: http://docs.djangoproject.com/en/dev/howto/static-files/ Note that this has changed a lot in Django 1.3, so be sure to view the correct version of that page for the version o

loading the external css file

2010-12-27 Thread Bithu
When i was trying to load an external stylesheet it was not working. But the internal css is working nicely. What should i do to link my .css file to my html template which is inside my template folder. -- You received this message because you are subscribed to the Google Groups "Django users"