{% extends "orga/base.html" %} {% load i18n %} {% block content %} {% if "congratulations" in request.GET %}
{% blocktrans trimmed %} Your event has been created and you're ready to go! Check out the event settings, set up your Call for Papers with submission types and questions, and you're ready to go! {% endblocktrans %}
{% endif %}

{{ request.event.name }} {{ request.event.date_from }}–{{ request.event.date_to }}

{% for stp in timeline %}
{{ stp.label }}
{% if stp.links %} {% endif %}
{% endfor %}
{% trans "Your event is currently" %}
{% if request.event.is_public %}
{% trans "live" %}
{% else %}
{% trans "not live" %}
{% endif %}
{% trans "Click here to change" %}
{% for tile in tiles %} <{% if tile.url %}a href="{{ tile.url }}"{% else %}div{% endif %} class="dashboard-block">

{{ tile.large }}

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