Skip to content

CheetahTemplate3/django-cheetahtemplate

Repository files navigation

Django-CheetahTemplate

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

It works with Python 2.7 or Python 3.4+, Django 1.11 and 2+, CheetahTemplate3.

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.

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

Copyright (C) 2018-2022 PhiloSoft Design.

License: MIT.