Cached templates django production settings

Django -- Posted on Dec. 1, 2017

Cached templates django production settings

              
                In template settings  in options  add cached settings:

            'debug': DEBUG,
            'loaders': [
                ('django.template.loaders.cached.Loader', [
                    'django.template.loaders.filesystem.Loader',
                    'django.template.loaders.app_directories.Loader',

                ]),
            ],
                  
   
            

Related Posts