Metadata-Version: 2.0
Name: django-cheetahtemplate
Version: 0.0.5
Summary: Use CheetahTemplate3 in Django
Home-page: https://github.com/CheetahTemplate3/django-cheetahtemplate
Author: Oleg Broytman
Author-email: phd@phdru.name
License: MIT
Description-Content-Type: UNKNOWN
Keywords: cheetah,django,template
Platform: Any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Topic :: Text Processing
Requires: Django
Requires: Cheetah3
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Requires-Dist: Cheetah3
Requires-Dist: Django (<2,>1.11); python_version == "2.7"
Requires-Dist: Django (>=2); python_version >= "3.4"

Django-CheetahTemplate
======================

Django-CheetahTemplate is a Django template backend to use
CheetahTemplate3_ in Django.

.. _CheetahTemplate3: http://cheetahtemplate.org/

Install ``django-cheetahtemplate``. Add or change TEMPLATES in
``settings.py`` the following way::

    TEMPLATES = [
        {
            'APP_DIRS': True,
            'BACKEND': 'django_cheetahtemplate.DjangoCheetahTemplate',
            'DIRS': [
            ],
            'OPTIONS': {
            },
        },
    ]

Put templates in ``cheetahtemplate`` subdirectories of installed
applications. See
`example <https://github.com/CheetahTemplate3/django-cheetahtemplate/tree/master/example>`_.

Author: Oleg Broytman <phd@phdru.name>.

Copyright (C) 2018 PhiloSoft Design.

License: MIT.

| Home Page:     https://github.com/CheetahTemplate3/django-cheetahtemplate
| PyPI:          https://pypi.python.org/pypi/django-cheetahtemplate


