I am trying to customize the theme of Mezzanine. Basically, I am following the tutorials of this and this.
I created a new app theme
, copied base.html
to the theme/templates
folder, and insert the theme
in the INSTALLED_APPS
in settings.py
(note, it is in the first line):
INSTALLED_APPS = (
"theme",
"django.contrib.admin",
"django.contrib.auth",
...
I suppose that Mezzanine will find theme
's base.html
first and use it in stead of the original. But it seems not the case; the original Mezzanine's base.html
is still used.
Did I missed anything? Is there a way that I can trace how Mezzanine (or Django) searches for the templates in order to find out what went wrong in the process?