{% extends "pretixcontrol/base.html" %} {% load i18n %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block content %}

{% trans "Dashboard" %}

{% trans "Your upcoming events" %}

{% if can_create_event %}
{% trans "Create a new event" %}
{% endif %} {% for w in upcoming %}
{% if w.lazy %} {% else %} {{ w.content|safe }} {% endif %}
{% endfor %}
{% if upcoming %}

{% trans "View all upcoming events" %}

{% endif %} {% if past %}

{% trans "Your most recent events" %}

{% for w in past %}
{% if w.lazy %} {% else %} {{ w.content|safe }} {% endif %}
{% endfor %}

{% trans "View all recent events" %}

{% endif %} {% if series %}

{% trans "Your event series" %}

{% for w in series %}
{% if w.lazy %} {% else %} {{ w.content|safe }} {% endif %}
{% endfor %}

{% trans "View all event series" %}

{% endif %} {% if widgets %}

{% trans "Other features" %}

{% for w in widgets %}
{% if w.url %} {% if w.lazy %} {% else %} {{ w.content|safe }} {% endif %} {% else %}
{% if w.lazy %} {% else %} {{ w.content|safe }} {% endif %}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}