{% set navigation_bar = [ (uri_for('main'), 'main', 'Start'), (uri_for('settings'), 'settings', 'Einstellungen'), (uri_for('changelog'), 'info', 'Über...'), (None, None, None), (uri_for('events'), 'events', 'Ereignisse'), ] -%} {% set bottom_navigation_bar = [ (uri_for('privacy'), 'privacy', _('Privacy Policy')), (uri_for('site_notice'), 'site_notice', _('Site Notice')), ] -%} {% set side_bar = side_bar|default([]) -%} {% set active_top_page = active_top_page|default('main') -%} {% set active_side_page = active_side_page|default('') -%} {% set prominent_notification = notification_manager.get_prominent_notification() %} {% if active_top_page == 'events' %}{% set prominent_notification = False %}{% endif %} {% block head %} ScreenShare {% endblock head %} {% block body %}
ScreenShare Logo
{% for href, id, caption in navigation_bar %} {% if href == id == caption == None %}
{% else %} {% if id != 'events' or (active_top_page == 'events' or notification_manager.has_multiple_prominent_notification() or notification_manager.has_nonprominent_notification() or notification_manager.has_nontransient_notification() > 0) %} {{ caption }}{% if id == 'events' %}{{ notification_manager.get_notifications_count() }}{% endif %} {% endif %} {% endif %} {% endfor %}
{% block title %} {% endblock title %}
Screenshot
erstellen
{% block pre_content %} {% endblock pre_content %} {% block content %} {% endblock content %} {% block post_content %} {% endblock post_content %}
{% if prominent_notification %} {% with prominent=True, notification=prominent_notification %}
{% include 'snippets/render_notification.html' %}
{% endwith %} {% endif %}
{% endblock body %}