{% extends "base.html" %} {% block title %}{{ meeting.title }} - {{ lab_name }}{% endblock %} {% block content %}
← Back to Meetings

{{ meeting.title }}

{% if can_edit %}
Edit Meeting
{% endif %}

Date & Time:

{{ meeting.meeting_time }}

Organized By:

{{ meeting.created_by_name }}

Research Group:

{% if meeting.group_name %} {{ meeting.group_name }} {% else %} All Lab Members {% endif %}

Tags:

{% if meeting.tags %} {% for tag in meeting.tags.split(',') %} {{ tag }} {% endfor %} {% else %} No tags {% endif %}
{% if meeting.description %}

Description

{{ meeting.description }}

{% endif %}

Meeting Summary

{% if is_participant or session.is_admin %}
{% endif %}

Will you attend?

{% if responses %}

Responses

Joining ({{ responses|selectattr('response', 'equalto', 'join')|list|length }})

    {% for r in responses %} {% if r.response == 'join' %}
  • {{ r.user_name }}
  • {% endif %} {% endfor %}

Can't Join ({{ responses|selectattr('response', 'equalto', 'wont_join')|list|length }})

    {% for r in responses %} {% if r.response == 'wont_join' %}
  • {{ r.user_name }}
  • {% endif %} {% endfor %}
{% endif %}
Upload Meeting Materials

Meeting Materials

{% if contents %} {% for content in contents %} {% endfor %}
Title Filename Uploaded By Size Actions
{{ content.title }} {{ content.filename }} {{ content.uploaded_by_name }} {{ "%.2f"|format(content.file_size / 1024 / 1024) }} MB Download
{% else %}

No materials uploaded yet for this meeting.

{% endif %}
{% endblock %}