{% extends "base.html" %} {% load static from staticfiles %} {% load bootstrap %} {% block content %} {% if user.is_superuser %}
{% endif %}Title | Unofficial Name | Max Occupancy | Residents |
---|---|---|---|
{{ room.title }} | {% if room.unofficial_name %}{{ room.unofficial_name }}{% endif %} | {{ room.occupancy }} | {% for person in room.current_residents.all %} {% if not forloop.first %}, {% endif %} {{ person.get_full }} {% endfor %} |