{% extends "common/base.html" %}
{% load event_tags %}
{% load i18n %}
{% load rules %}
{% load safelink %}
{% load static %}
{% block stylesheets %}
{% block agenda_stylesheets %}{% endblock agenda_stylesheets %}
{% endblock stylesheets %}
{% block custom_header %}
{% block alternate_link %}
{% endblock alternate_link %}
{% block agenda_custom_header %}{% endblock agenda_custom_header %}
{% endblock custom_header %}
{% block nav_link %}
{% has_perm "schedule.list_schedule" request.user request.event as can_view_schedule %}
{% if can_view_schedule %}
{{ request.event.urls.schedule }}
{% else %}
{{ request.event.urls.base }}
{% endif %}
{% endblock nav_link %}
{% block header_tabs %}
{% if schedule or request.event.current_schedule %}
{% endif %}
{% if request.event.display_settings.schedule_display != "list" %}
{% endif %}
{% if schedule or request.event.current_schedule %}
{% endif %}
{% for link in header_links %}
{% endfor %}
{% endblock header_tabs %}
{% block content %}
{% if request.event.is_public and not request.event|get_feature_flag:"show_schedule" and not request.user.is_anonymous and not hide_visibility_warning %}
{% include "common/includes/nonpublic.html" %}
{% endif %}
{% block agenda_content %}{% endblock agenda_content %}
{% endblock content %}