{% extends "orga/generic/list.html" %} {% load compress %} {% load i18n %} {% load static %} {% block create_button_label %}{% translate "New room" %}{% endblock create_button_label %} {% block stylesheets %} {% compress css %} {% endcompress %} {% endblock stylesheets %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block list_content %}
{% for room in room_list %} {% empty %} {% endfor %}
{% translate "Name" %} {% translate "Capacity" %}
{{ room.name }} {% if room.capacity %}{{ room.capacity }}{% endif %}
{% translate "Please add at least one place in which sessions can take place." %}
{% include "orga/includes/pagination.html" %} {% endblock list_content %}