{% extends "base.html" %} {% block title %}Content Library - {{ lab_name }}{% endblock %} {% block content %}

Content Library

Upload Content
{% for content in contents %} {% endfor %}
Title Filename Group Meeting Uploaded By Access Size Actions
{{ content.title }} {{ content.filename }} {% if content.group_name %} {{ content.group_name }} {% else %} - {% endif %} {% if content.meeting_title %} {{ content.meeting_title }} {% else %} - {% endif %} {{ content.uploaded_by_name }} {% if content.access_level == 'link' %} Public Link {% else %} Group {% endif %} {{ "%.2f"|format(content.file_size / 1024 / 1024) }} MB Download {% if session.is_admin or content.uploaded_by == session.user_id %} Edit
{% endif %} {% if content.access_level == 'link' and content.share_link %} {% endif %}
{% if not contents %}

No content available.

{% endif %}
{% endblock %}