You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
... although now I see this warning, so maybe this isn't important, and we should just remove overextends:
if DJANGO_VERSION >= (1, 9):
warnings.warn(
"The `overextends` template tag is deprecated in favour of "
"Django's built-in `extends` tag, which supports recursive "
"extension in Django 1.9 and above.",
DeprecationWarning,
stacklevel=2,
)
Mezzanine provides the 'overextends' template tag. However, the code for this uses the method 'load_template_source' which was removed in Django 2.0
(See https://docs.djangoproject.com/en/1.11/_modules/django/template/loaders/base/#Loader
vs
https://docs.djangoproject.com/en/2.2/_modules/django/template/loaders/base/#Loader
)
It would be nice if this tag could be fixed for the Django 2.2 version of Mezzanine.
The text was updated successfully, but these errors were encountered: