diff --git a/plinth/modules/first_boot/templates/base_firstboot.html b/plinth/modules/first_boot/templates/base_firstboot.html index 7efe77fd6..9c3edede9 100644 --- a/plinth/modules/first_boot/templates/base_firstboot.html +++ b/plinth/modules/first_boot/templates/base_firstboot.html @@ -15,6 +15,9 @@ no-brand {% block notifications_dropdown %} {% endblock %} +{% block breadcrumbs %} +{% endblock %} + {% block mainmenu_toggler %} {% if user.is_authenticated %} {{ block.super }} diff --git a/plinth/modules/first_boot/templates/firstboot_complete.html b/plinth/modules/first_boot/templates/firstboot_complete.html index b931395dc..c05747a51 100644 --- a/plinth/modules/first_boot/templates/firstboot_complete.html +++ b/plinth/modules/first_boot/templates/firstboot_complete.html @@ -6,6 +6,9 @@ {% load bootstrap %} {% load i18n %} +{% block breadcrumbs %} +{% endblock %} + {% block content %}

{% trans "Setup Complete! Next Steps:" %}

diff --git a/plinth/modules/sso/templates/login.html b/plinth/modules/sso/templates/login.html index 0b9938dc7..e1774b884 100644 --- a/plinth/modules/sso/templates/login.html +++ b/plinth/modules/sso/templates/login.html @@ -6,6 +6,9 @@ {% load bootstrap %} {% load i18n %} +{% block breadcrumbs %} +{% endblock %} + {% block content %}
diff --git a/plinth/templates/base.html b/plinth/templates/base.html index c57ab5faa..4d19a4f3f 100644 --- a/plinth/templates/base.html +++ b/plinth/templates/base.html @@ -252,7 +252,9 @@ {% block content_row %} {% include 'messages.html' %} - {% include 'breadcrumbs.html' %} + {% block breadcrumbs %} + {% include 'breadcrumbs.html' %} + {% endblock %} {% block content %} {# main content goes here #}