Re: Unable to display static content.

2012-01-01 Thread Babatunde Akinyanmi
Are you sure you read this?: https://docs.djangoproject.com/en/1.3/ref/contrib/staticfiles/ >From my own experience, storing my static files in '/static/' never works so I always create a separate folder for my static files and add the path to STATICFILES_DIRS in my settings. On 1/1/12, Chirdeep

Re: Unable to display static content.

2012-01-01 Thread Chirdeep
Now I have changed the project structure to Project -webApp ---static -images -stylesheets -index.html ---templates I can browse to index.html inside static folder. http://127.0.0.1:8000/static/index.html For some reason, its adding the search-form to the URL for loading CSS and

Re: Unable to display static content.

2011-12-31 Thread Jisson Varghese
use {{STATIC_URL}} in place of {{MEDIA_URL}} and keep STATIC_ROOT =' ' in settings page. refer : https://docs.djangoproject.com/en/dev/howto/static-files/ On Sat, Dec 31, 2011 at 7:42 AM, Chirdeep wrote: > Hi All, > > I am just learning Python and Django. I am able to

Unable to display static content.

2011-12-30 Thread Chirdeep
Hi All, I am just learning Python and Django. I am able to see the webpage but css and images are not picked up. Configuration as below: Linux Ubuntu 11.04 Python 2.7.2 Django 1.3.1 I have setup Django using VirtualEnv. I am using PyCharm and my Django project is pointing to the VirtualEnv