{% extends "orga/base.html" %} {% load i18n %} {% load rules %} {% block content %} {% has_perm 'orga.view_speakers' request.user request.event as can_view_speakers %} {% 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.get_date_range_display }}

{% 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 and can_view_speakers %}
{% include "common/logs.html" with entries=history %}
{% endif %} {% endblock %}