Sunil Mohan Adapa 526c5354aa
ui: Don't show breadcrumbs in login and first wizard pages
- It was never intended that breadcrumbs be shown in these pages.

Tests:

- When running first wizard, the busy page, the welcome page, user account
create page, and the next steps page are all shown without breadcrumbs. Same for
login page.

- Other pages which had breadcrumbs earlier continue to show them, that is, app
pages, system pages, help pages, and pages under those.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2024-12-28 09:03:55 +02:00

32 lines
557 B
HTML

{% extends "base.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load static %}
{% block body_class %}
no-brand
{% endblock %}
{% block mainmenu_left_collapse %}
{% endblock %}
{% block notifications_dropdown %}
{% endblock %}
{% block breadcrumbs %}
{% endblock %}
{% block mainmenu_toggler %}
{% if user.is_authenticated %}
{{ block.super }}
{% endif %}
{% endblock %}
{% block mainmenu_right %}
{% if user.is_authenticated %}
{% include "firstboot_navbar.html" %}
{% endif %}
{% endblock %}