{% 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 }}

{{ timeline.EVENT.name }}
  • {% trans "Provide a point of contact for the speakers" %}
  • {% trans "Enjoy the event!" %}
{{ timeline.WRAPUP.name }}
  • {% trans "Monitor incoming feedback" %}
  • {% trans "Embed talk recordings if available" %}
  • {% trans "Release next event date?" %}
{% 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 %}