{% extends "base.html" %} {% load cache %} {% load static %} {% load i18n %} {% load event_extras %} {% load utils %} visible {% block title %} {% translate "Events" %} {% endblock %} {% block content %}
{% csrf_token %} {% if perms.core.add_event %}
{% event_bulk_actions %}
{% endif %} {% if event_list %}
{% if perms.core.add_event %}
{% endif %} {% for event in event_list %} {% with counter=event|event_signup_state_counts:request.user stats=event.get_signup_stats %} {% endwith %} {% endfor %}
{% else %}
{% translate "There are no events." %}
{% endif %}
{% endblock %}