Adding a url link to a static page in django

Problem

You would like to create a link to a static page in a template in your django application.

Solution

As described in the documentation Django static files, add the following in your template (note the static template tag):

{% load staticfiles %}
...
a href="{% static 'static_page.html' %}