[Answered ]-Want to edit mezzanine footer

2👍

You will need to override the template displaying the footer(base.html).

Start by collecting all the templates into a single /templates folder:

python manage.py collecttemplates

You will also need an app to hold your overridden templates, I tend to call
this core:

python manage.py startapp core

Make sure to add this to the top of your INSTALLED_APPS, before any mezzanine
modules.

Then copy or move the templates to override into the core app:

mkdir core/templates
mv templates/base.html core/templates/

Then edit the template in core/templates however you like.

Leave a comment