Metadata-Version: 1.1
Name: django-template-admin
Version: 1.1.1
Summary: Django application for advanced template management
Home-page: https://github.com/misli/django-template-admin
Author: Jakub Dorňák
Author-email: jakub.dornak@misli.cz
License: BSD
Description-Content-Type: UNKNOWN
Description: django-template-admin
        =====================
        
        Django application for advanced template management
        
        Allows staff member (with corresponding permissions) to:
        
        * list all templates used in the project and examine their content
        * change the content of any template
        * create new templates
        * **see the differences** between the default content (from filesystem or other loader) and the changed content
        * **see if the original content has changed** since the last change
        
        Installation
        ------------
        
        Install ``django-template-admin`` either from source or using pip.
        
        Configuration
        -------------
        Add ``'template_admin'`` to ``settings.INSTALLED_APPS``.
        
        Configure template loaders::
        
            TEMPLATES[0]['OPTIONS']['loaders'] = [
                ('template_admin.loader.Loader', [
                    ('django.template.loaders.cached.Loader', [
                        'django.template.loaders.filesystem.Loader',
                        'django.template.loaders.app_directories.Loader',
                    ]),
                ]),
            ]
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Natural Language :: Czech
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 2.7
