Attendees
{% for attendee in attendees %}
{{ attendee.name }}
{% if attendee.role %}— {{ attendee.role }}{% endif %}
{% endfor %}
{% if absent %}
Absent: {{ absent }}
{% endif %}
Discussion
{% for item in agenda_items %}
{{ loop.index }}.
{{ item.topic }}
{{ item.discussion }}
{% if item.presenter %}
Presented by: {{ item.presenter }}
{% endif %}
{% endfor %}
{% if decisions %}
Decisions Made
{% for decision in decisions %}
Decision {{ loop.index }}
{{ decision.text }}
{% endfor %}
{% endif %}
Action Items
| Action Item |
Assigned To |
Due Date |
Status |
{% for action in action_items %}
| {{ action.description }} |
{{ action.assigned_to }} |
{{ action.due_date }} |
{{ action.status | default("Pending") }} |
{% endfor %}
{% if next_meeting_date %}
Next Meeting
{{ next_meeting_date }}{% if next_meeting_time %} at {{ next_meeting_time }}{% endif %}{% if next_meeting_location %} — {{ next_meeting_location }}{% endif %}
{% endif %}
Minutes Prepared By
{{ prepared_by }}
{{ prepared_by_title | default("") }}
Approved By
{{ meeting_chair }}