Metadata-Version: 1.1
Name: django-static-md5url
Version: 0.1
Summary: Versioning django static files in production. Add md5 suffix to url
Home-page: https://github.com/saladrai/django-static-md5url
Author: Saladraj Eugene
Author-email: saladrai@gmail.com
License: MIT
Description: # django-static-md5url
        
        This is extension for versioning static files in Django projects, if ```PRODUCTION = True```.
        
        For example this css file:
        ```
        <link rel="stylesheet" href="{% md5url 'base/css/styles.min.css' %}">
        ```
        will be replace with:
        ```
        <link rel="stylesheet" href="/static/base/css/styles.min.css?v=a6e2ba64">
        ```
        
        where **a6e2ba64** is first 8 characters of md5 file sum.
        
        # Installation
        
        Install using pip
        ```
        pip install django-static-md5url
        ```
        
        Add ``` django_static_md5url ``` to INSTALLED_APPS.
        
        # Configuration
        
        Load ```{% load md5url %}``` template tag in your Django template.
        
Keywords: django static md5url
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
