Some solutions provided on doing a Google search for \"Django breadcrumbs\" include using templates and block.super, basically just extending the base blocks and adding the
The Django admin view module have automatic breadcumbs, which are implemented like this:
{% block breadcrumbs %} {% trans 'Home' %} {% block crumbs %} {% if title %} › {{ title }}{% endif %} {% endblock %} {% endblock %}
So there is some kind of built-in support for this..