{% 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 projects %} {% for p in projects %} {{ p.name }} {% endfor %} {% endif %} {% if item.tags %}
{% for tag in item.tags %}{{ tag }}{% endfor %}
{% endif %}
Overview Notes{% if counts.notes %} ({{ counts.notes }}){% endif %} Links{% if counts.links %} ({{ counts.links }}){% endif %} Files{% if counts.files %} ({{ counts.files }}){% endif %} Lists{% if counts.lists %} ({{ counts.lists }}){% endif %} Decisions{% if counts.decisions %} ({{ counts.decisions }}){% endif %} Processes Contacts{% if counts.contacts %} ({{ counts.contacts }}){% endif %}
{% if tab == 'overview' %} {% 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('_', ' ') }}
{% else %}
No action items yet
{% endfor %}
{% if decisions %}

Decisions{{ decisions|length }}

{% for dec in decisions %}
{{ dec.title }} {{ dec.status }} {{ dec.impact }}
{% endfor %}
{% endif %} {% elif tab == 'notes' %} + New Note {% for n in tab_data %}
{{ n.title }} {{ n.updated_at.strftime('%Y-%m-%d') if n.updated_at else '' }}
{% else %}
No notes linked to this meeting
{% endfor %} {% elif tab == 'links' %} + New Link {% for w in tab_data %}
{{ w.label }} {{ w.url[:50] }}{% if w.url|length > 50 %}...{% endif %}
{% else %}
No links linked to this meeting
{% endfor %} {% elif tab == 'files' %} + Upload File {% for f in tab_data %}
{{ f.original_filename }} {{ f.created_at.strftime('%Y-%m-%d') if f.created_at else '' }}
{% else %}
No files attached to this meeting
{% endfor %} {% elif tab == 'lists' %} + New List {% for l in tab_data %}
{{ l.name }} {{ l.item_count }} items
{% else %}
No lists linked to this meeting
{% endfor %} {% elif tab == 'decisions' %}
+ New Decision {% for d in tab_data %}
{{ d.title }} {{ d.status }} {% if d.impact %}{{ d.impact }}{% endif %} {% if d.decided_at %}{{ d.decided_at.strftime('%Y-%m-%d') if d.decided_at else '' }}{% endif %}
{% else %}
No decisions linked to this meeting
{% endfor %} {% elif tab == 'processes' %}
Process management coming soon
{% elif tab == 'contacts' %}
{% for c in tab_data %}
{{ c.first_name }} {{ c.last_name or '' }} {% if c.role %}{{ c.role }}{% endif %} {{ c.linked_at.strftime('%Y-%m-%d') if c.linked_at else '' }}
{% else %}
No contacts linked to this meeting
{% endfor %} {% endif %} {% endblock %}