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 <[email protected]>.
Copyright (C) 2018-2022 PhiloSoft Design.
License: MIT.