"
This article is part of in the series
Last Updated: Sunday 16th March 2014

Django's Default Static File Manager

In every web application, static files such as css, Javascript and images, give the website a unique look-and-feel and make it stand out of the crowd. For any user, a beautiful, professional looking website is way more attractive than an rough, unpolished one.

In a Django application, we manage the static files using Django's default static file managing components, such as django.contrib.staticfiles which collects all of your static files into one location so they can be served by a front-end web server like apache and AppDirectoriesFinder which looks for a "static" directory under each of the INSTALLED_APPS.

Serve a CSS and an Image using Django

First, create a directory static inside our app myblog so that the directory structure becomes:

[shell]
myblog/
static/
[/shell]

Then, create a directory myblog inside the new static directory and another static directory underneath it so that the directory structure becomes:

[shell]
myblog/
static/
myblog/
static/
[/shell]

This kind of directory structure may look strange but it actually makes sense since Django's AppDirectoriesFinder will search the INSTALLED_APPS or our myblog app and find the static directory underneath it recursively. Therefore, a stylesheet style.css located at myblog/static/myblog/static/style.css can be referenced as myblog/style.css inside our template files.

Now, we insert the following code into myblog/static/myblog/static/style.css:

[css]
p {
color: red;
}
[/css]

Then, we modify the template file to link the style.css file to test the file's effects.

[html]
{% load staticfiles %}

{% if post_list %}

{% else %}

No post is made during the past two days.

{% endif %}
[/html]

Now, reload the page http://localhost:8000/ and you will see that the element's text becomes red:

Django Static File Example Screenshot

Then we can add a img element into the page which refers to a jpg stored in the static directory myblog/static/myblog:

[html]
{% load staticfiles %}

{% if post_list %}

{% else %}

No post is made during the past two days.

{% endif %}


[/html]

Now you can refresh the page http://localhost:8000 to see the new image displayed on the homepage.

Django Static File Example Screenshot 2

Summary and Tips

In this article, we learned how to manage static files (images, css, javascript, etc.) in our Django application. One thing to remember is that Django's internal static file manager and directory finder will automatically look for the files under myblog/static/myblog so it's better to put the files in that directory instead of directly in myblog/. By putting the files in the designated directory, Django knows how to distinguish static files between different apps, such as myblog/style.css or myblog_version2/style.css.

About The Author