File: base_firstboot.html

package info (click to toggle)
freedombox 26.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,092 kB
  • sloc: python: 48,542; javascript: 1,730; xml: 481; makefile: 290; sh: 137; php: 32
file content (31 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% 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 %}