{% extends "base.html" %} {% import "bootstrap/form.html" as wtf %} {% block app_content %}
Public rooms
{% if not public_rooms|length %} No rooms are available {% else %} {% for room in public_rooms %} {% endfor %}
Room Participants Last active
{{ room.name }} {{ room.clients|length }} / {{ room.guest_limit if room.guest_limit is not none else "∞"|safe }} {{ room.active_ago() }} minutes ago
{% endif %}
{% endblock %}