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
).
Source:stackexchange.com