{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "A list of all Video Chat Events" %}{% endblock title %} {% block body %}event-list{% if events|length < 4 %}-empty{% endif %}{% endblock body %} {% block content %}

{% trans "Upcoming Events" %}

{% if events %}
    {% for event in events %} {% include "arrange_videochat/_event.html" %} {% endfor %}
{% else %}

{% trans "No Event at the moment, would you like to host one?" %}

{% endif %}
{% endblock content %}