{% extends "common/base.html" %} {% from "components/header.html" import header %} {% block title %}Room - DocuPulse{% 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-outline-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 %}
{% endblock %}