Metadata-Version: 1.1
Name: django-skins
Version: 0.1.1
Summary: easily apply skins to your django web app
Home-page: https://github.com/ak4zh/django-skins
Author: Akash Agarwal
Author-email: agwl.akash@gmail.com
License: MIT
Description: =============================
        Django Skins
        =============================
        
        .. image:: https://badge.fury.io/py/django-skins.svg
            :target: https://badge.fury.io/py/django-skins
        
        .. image:: https://travis-ci.org/ak4zh/django-skins.svg?branch=master
            :target: https://travis-ci.org/ak4zh/django-skins
        
        .. image:: https://codecov.io/gh/ak4zh/django-skins/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/ak4zh/django-skins
        
        easily apply skins to your django web app
        
        Documentation
        -------------
        
        The full documentation is at https://django-skins.readthedocs.io.
        
        Quickstart
        ----------
        
        Install Django Skins::
        
            pip install django-skins
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'django_skins',
                ...
            )
        
        Add django_skins.context_processors.template to context_processors:
        
        .. code-block:: python
        
            TEMPLATES = [
                    ...
                    'OPTIONS': {
                        'context_processors': [
                            ...
                            'django_skins.context_processors.template',
                        ],
                    ...
            ]
        
        
        
        
        History
        -------
        
        0.1.0 (2021-04-24)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-skins
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
