{% extends 'base.html' %} {% load fontawesome_6 %} {% load i18n %} {% load static %} {% block breadcrumbs %} {% endblock %} {% block content %} {% if total_event_count > 0 %} {% for event in active_and_current_events %}
{% include "AKDashboard/dashboard_row.html" %} {% if event.contact_email %}

{% fa6_icon "envelope" "fas" %} {% trans "Write to organizers of this event for questions and comments" %}

{% endif %}
{% endfor %} {% if old_event_count > 0 %}

{% trans "Old events" %}

{% for event in old_events %}
{% include "AKDashboard/dashboard_row_old_event.html" %}
{% endfor %} {% endif %} {% else %}

{% trans 'Currently, there are no Events!' %}

{% trans 'Please contact an administrator if you want to use AKPlanning.' %}

{% endif %} {% endblock %}