{% extends "main/base.html" %} {% from 'global_macros.html' import SidenavToggle, ActionBar %} {% from 'main/cards.html' import SidenavApps %} {% block header %} {% if access_group.can_see_sidenav == "True" %}
{{SidenavToggle()}}
{% else %}
person
{% endif %} {% endblock header %} {% block sidenav %}
{% if current_user %} {% if current_user.theme %} {% if current_user.theme == "light" %} toggle_off {% elif current_user.theme == "dark" %} toggle_on {% endif %} {% else %} {% if settings.theme == "light" %} toggle_off {% elif settings.theme == "dark" %} toggle_on {% endif %} {% endif %} {% endif %} {% if page != "home" %} dashboard {% endif %} {% if access_group.can_access_user_settings == "True" or access_group.can_access_main_settings == "True" or access_group.can_edit_images == "True" %} settings {% endif %} {% if access_group.can_access_card_editor == "True"%} aspect_ratio {% endif %} {% if access_group.can_access_raw_config == "True"%} description {% endif %} {% if access_group.can_access_docs == "True" %} info {% endif %} {% if current_user.is_authenticated %} exit_to_app {% else %} account_circle {% endif %}
{{ ActionBar(tags, location="sidenav") }}
{{ SidenavApps(apps, tags) }}
{% endblock sidenav%} {% block modules %} {% endblock modules %} {% block footer %} {% endblock footer %}