Attendees
{% for person in attendees %}
{{ person.name }}
{% endfor %}
{% for person in absent %}
{{ person.name }}
{% endfor %}
Agenda
{% for item in agenda_items %}
{{ item.number }}
{{ item.topic }}
{% if item.presenter %}
{{ item.presenter }}
{% endif %}
Discussion Notes
{% for note in discussion_notes %}
{{ note.topic }}
{{ note.content }}
Action Items
| Action | Assigned To | Due Date | Priority | Status |
|---|---|---|---|---|
| {{ action.task }} | {{ action.assigned_to }} | {{ action.due_date }} | {{ action.priority }} | {{ action.status }} |
Next Meeting
{% endif %}
{% if additional_notes %}
Additional Notes
{{ additional_notes }}