{% extends "base.html" %} {% block content %}

{{ item.title }}

Edit
{{ item.meeting_date }} {{ item.status }} {% if item.location %}{{ item.location }}{% endif %} {% if item.start_at and item.end_at %} {{ item.start_at.strftime('%H:%M') }} - {{ item.end_at.strftime('%H:%M') }} {% endif %} {% if item.tags %}
{% for tag in item.tags %}{{ tag }}{% endfor %}
{% endif %}
{% if item.agenda %}

Agenda

{{ item.agenda }}
{% endif %} {% if item.notes_body %}

Notes

{{ item.notes_body }}
{% endif %} {% if item.transcript %}

Transcript

{{ item.transcript }}
{% endif %}

Action Items{{ action_items|length }}

{% for task in action_items %}
{{ task.title }} {% if task.project_name %}{{ task.project_name }}{% endif %} {{ task.status|replace('_', ' ') }}
{% endfor %} {% if not action_items %}
No action items yet
{% endif %}
{% if decisions %}

Decisions{{ decisions|length }}

{% for dec in decisions %}
{{ dec.title }} {{ dec.status }} {{ dec.impact }}
{% endfor %}
{% endif %} {% if attendees %}

Attendees{{ attendees|length }}

{% for att in attendees %}
{{ att.first_name }} {{ att.last_name or '' }} {% if att.role %}{{ att.role }}{% endif %}
{% endfor %}
{% endif %} {% endblock %}