[Fixed]-Django translations inside included HTML template

1👍

inside footer.html you need to load i18n

{% load i18n %}

quote from the docs:

As with all template tags, this tag needs to be loaded in all
templates which use translations, even those templates that extend
from other templates which have already loaded the i18n tag.

Leave a comment