{% extends "orga/base.html" %} {% load i18n %} {% load rules %} {% load static %} {% block stylesheets %} {% endblock stylesheets %} {% block scripts %} {% endblock scripts %} {% block content %} {% has_perm "person.orga_list_speakerprofile" request.user request.event as can_view_speakers %} {% has_perm "event.update_event" request.user request.event as can_change_settings %} {% if "congratulations" in request.GET %}
{% blocktranslate trimmed %} Your event has been created and you’re ready to go! Check out the event settings, set up your Call for Proposals with session types and custom fields, and you’re ready to go! {% endblocktranslate %}
{% endif %}

{{ request.event.name }} {{ request.event.get_date_range_display }}

{% for stp in timeline %}
{{ stp.label }}
{% if stp.links and can_change_settings %} {% endif %}
{% endfor %}
{% if can_change_settings %}
{% translate "Your event is currently" %}
{% if request.event.is_public %}
{% translate "live" context "event visibility: publicly accessible" %}
{% else %}
{% translate "not live" context "event visibility: not publicly accessible" %}
{% endif %}
{% translate "Click here to change" %}
{% endif %} {% for tile in tiles %}
<{% if tile.url %}a href="{{ tile.url }}"{% else %}div{% endif %} class="dashboard-block{% if tile.left or tile.right %} dashboard-block-extended{% endif %}">

{{ tile.large }}

{{ tile.small }}
{% if tile.left or tile.right %}
{% if tile.left %} <{% if tile.left.url %}a href="{{ tile.left.url }}"{% else %}div{% endif %} class="dashboard-block-addon{% if tile.left.color %} dashboard-block-addon-{{ tile.left.color }}{% endif %}"> {{ tile.left.text }} {% endif %} {% if tile.right %} <{% if tile.right.url %}a href="{{ tile.right.url }}"{% else %}div{% endif %} class="dashboard-block-addon{% if tile.right.color %} dashboard-block-addon-{{ tile.right.color }}{% endif %}"> {{ tile.right.text }} {% endif %}
{% endif %}
{% endfor %}
{% if history and can_change_settings %}

{% translate "History" %}

{% if can_change_settings %} ({% translate "Full history" %}) {% endif %}
{% include "common/logs.html" with entries=history %}
{% endif %} {% endblock content %}