mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- 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>
32 lines
557 B
HTML
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 %}
|