{% extends "common/base.html" %} {% from "components/header.html" import header %} {% block title %}{{ room.name }} - DocuPulse{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {{ header( title=room.name, description=room.description or 'No description', button_text="Back to Rooms", button_url=url_for('rooms.rooms'), icon="fa-door-open", button_class="btn-secondary", button_icon="fa-arrow-left" ) }}
Files
{% if current_user.is_admin %} Manage Members {% endif %} {% if current_user.is_admin or can_upload %}
{% endif %} {% if current_user.is_admin or can_download %} {% endif %} {% if current_user.is_admin or can_delete %} {% endif %}
{% include 'components/details_modal.html' %} {% include 'components/file_preview_modal.html' %} {% endblock %} {% block extra_js %} {% endblock %}