This seems to be a source of much confusion judging by the amount of similar titles on the subject, however trying everything I could find on static files with the django development server I've almost given up hope!
So my static files are served from C:/Users/Dan/seminarWebsite/static/, in which I have sub folders for images, css etc.
SETTINGS:
STATIC_ROOT = 'C:/Users/Dan/seminarWebsite/static/' STATIC_URL = '/static/'
The static files app is also active.
URLS:
from django.contrib.staticfiles.urls import staticfiles_urlpatterns urlpatterns += staticfiles_urlpatterns()
TEMPLATE:
"{{ STATIC_URL }}images/vision.jpeg"
However only a broken link appears and at this address: http://127.0.0.1:8000/homepage/images/vision.jpeg
and I don't think it should be at that address (homepage is the url name of the page the static image file is being called to).
Django provides django. contrib. staticfiles to help you collect static files from each of your applications (and any other places you specify) into a single location that can easily be served in production. STATIC_ROOT is the path that defines where your static files will be collected.
Using the collectstatic command, Django looks for all static files in your apps and collects them wherever you told it to, i.e. the STATIC_ROOT . In our case, we are telling Django that when we run python manage.py collectstatic , gather all static files into a folder called staticfiles in our project root directory.
STATICFILES_DIRS tells Django where to look for static files in a Django project, such as a top-level static folder. STATIC_ROOT is the folder location of static files when collectstatic is run. STATICFILES_STORAGE is the file storage engine used when collecting static files with the collectstatic command.
Based on what you've posted so far, it looks like you're following the docs for django.contrib.staticfiles
. I agree that the docs can be difficult to follow especially if one is new to django.
I believe the confusion stems from the fact that django.contrib.staticfiles
has two modes of operation:
STATIC_URL
STATIC_ROOT
) so that the static files can be hosted using a webserver suited for static files. This collation is done using python ./manage.py collectstatic
.Here's a quick summary of how to get up and running. I haven't had a chance to try it out so there may be mistakes. Hopefully this will help you get started and at the very least help you understand the docs. When in doubt, do refer to the docs.
Make sure you have 'django.contrib.staticfiles'
in INSTALLED_APPS
Specify STATIC_URL
. This will be the path where your static files will be hosted on.
STATIC_URL = '/static/'
Make sure your files are in the correct directories. By default, staticfiles
will look for files within the static/
directory of each installed app, as well as in directories defined in STATICFILES_DIRS
. (This behaviour depends on backends listed in STATICFILES_FINDERS
). In your case, you'd probably want to specify your directory in STATICFILES_DIRS
:
STATICFILES_DIRS = ( 'C:/Users/Dan/seminarWebsite/static/', )
Make the view accessible by adding the following to the end of urls.py
:
from django.contrib.staticfiles.urls import staticfiles_urlpatterns urlpatterns += staticfiles_urlpatterns()
Make sure you have DEBUG = True
in settings.py
.
That's it.
If you run your dev server (./manage.py runserver
), you should be able to access your file via http://localhost:8000/static/images/vision.jpeg
(which serves C:/Users/Dan/seminarWebsite/static/images/vision/jpeg
).
There are two ways to get a correct link for your static files - using the staticfiles template tag, and making STATIC_URL
accessible to your templates. Since you've attempted the latter, we'll stick to that.
Make sure you have 'django.core.context_processors.static'
in TEMPLATE_CONTEXT_PROCESSORS
. If you haven't redefined TEMPLATE_CONTEXT_PROCESSORS
then there is nothing to do since it should be there by default.
Make sure you use RequestContext when rendering your template. Example:
from django.template import RequestContext # ... def some_view(request): # ... return render_to_response('my_template.html', { "foo" : "bar", # other context }, context_instance = RequestContext(request))
You should now be able to use the following in your my_template.html
:
<a href="{{ STATIC_URL }}images/vision.jpeg" />
If all the static files you need to serve are store in that one directory (C:/Users/Dan/seminarWebsite/static
), then you're almost there. Simple configure your webserver to host that directory on /static/
(or whatever you set STATIC_URL
to) and you're good to go.
If you have files scattered in different directories and/or app specific static files, then you'll need to collate them.
Set STATIC_ROOT
to the directory where you want to store the collated files.
Run ./manage.py collectstatic
to do the collation.
Configure your webserver to host the that directory (STATIC_ROOT
) on /static/
(or whatever you set STATIC_URL
to).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With