{% extends "orga/base.html" %} {% load i18n %} {% load rules %} {% block content %} {% has_perm 'orga.view_speakers' request.user request.event as can_view_speakers %} {% has_perm 'orga.change_settings' 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 Papers with session types and questions, 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 %}
{% translate "Your event is currently" %}
{% if request.event.is_public %}
{% translate "live" %}
{% else %}
{% translate "not live" %}
{% endif %}
{% translate "Click here to change" %}
{% 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_view_speakers %}

{% translate "History" %}

{% if can_change_settings %}({% translate "Full history" %}){% endif %}

{% include "common/logs.html" with entries=history %}
{% endif %} {% endblock %}