Skip to main content

kp_static_version is a simple Django app to add a version number to static files and force browsers to use the latest version of the file.

Project description

kp_static_version is a simple Django app to add a version number to static files and force browsers to use the latest version of the file.

Quick start

  1. Install django-kp-static-version:

    pip install django-kp-static-version
  2. Add “polls” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'kp_static_version',
    ]
  3. Load templatetags into your template:

    {% load kp_static %}
  4. Load your static file:

    <script src="{% vstatic "js/sample.js" %}"></script>

If in your settings.py the variable DEBUG = True then a random number will be generated for development otherwise the value KP_STATIC_VERSION will be used:

KP_STATIC_VERSION = "0.5"

The result:

<script src="/static/js/sample.js?v=0.5"></script>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-kp-static-version-0.1.tar.gz (14.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page