error in implementing static files in django
- by POOJA GUPTA
my settings.py file:-
STATIC_ROOT = '/home/pooja/Desktop/static/'
# URL prefix for static files.
STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
'/home/pooja/Desktop/mysite/search/static',
)
my urls.py file:-
from django.conf.urls import patterns, include, url
from…