diff --git a/docs/advanced_topics/customisation/branding.rst b/docs/advanced_topics/customisation/branding.rst index 955a16766e..dd45a82cbc 100644 --- a/docs/advanced_topics/customisation/branding.rst +++ b/docs/advanced_topics/customisation/branding.rst @@ -19,6 +19,18 @@ Install ``django-overextends`` with ``pip install django-overextends`` (or add ` # ... ) + # For Django 1.9+ you must also add overextends to the builtins key of your TEMPLATES setting: + TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'APP_DIRS': True, + 'OPTIONS': { + # ... + 'builtins': ['overextends.templatetags.overextends_tags'], + } + }, + ] + The template blocks that are available to be overridden are as follows: ``branding_logo``