Closed uadnan closed 7 years ago
Added CachedLoader support for Django 1.9 and higher to resolve #456
CachedLoader
Starting from Django 1.8 new TEMPLATES config was introduced depreciating old TEMPLATE_* settings. I've updated that within test project settings.
Django 1.8
TEMPLATES
TEMPLATE_*
Starting from Django 1.9, There is no longer make_origin method on TemplateEngine.
Django 1.9
make_origin
TemplateEngine
Thanks @goodtune
I've added necessary Unit tests. Also bit explained my changes in PR description
Added
CachedLoader
support for Django 1.9 and higher to resolve #456Starting from
Django 1.8
newTEMPLATES
config was introduced depreciating oldTEMPLATE_*
settings. I've updated that within test project settings.Starting from
Django 1.9
, There is no longermake_origin
method onTemplateEngine
.