[Answered ]-Override page.html template from an app

2đź‘Ť

âś…

Yes.

Django uses multiple template loaders, and the one that Mezzanine will use is the “app” loader.

The only thing you need to do is to make sure that another template loader can find the “page.html” template before the “app” one.

The template loaders are called in the order defined in your settings (TEMPLATE_LOADERS).

Leave a comment