{% extends "common/base.html" %} {% block title %}Rooms - DocuPulse{% endblock %} {% block content %}

Rooms

{% for room in rooms %}
{{ room.name }}
Created on {{ room.created_at.strftime('%b %d, %Y') }}
{{ room.member_permissions|length }}

{{ room.description or 'No description' }}

Creator
Created by
{{ room.creator.username }} {{ room.creator.last_name }}
{% if current_user.is_admin %} {% endif %} {% endfor %}
{% block extra_js %} {% endblock %} {% endblock %}