Capture
diff --git a/templates/decision_detail.html b/templates/decision_detail.html
new file mode 100644
index 0000000..75f3d8f
--- /dev/null
+++ b/templates/decision_detail.html
@@ -0,0 +1,55 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+
+
+
+
+{% if superseded_by %}
+
+{% endif %}
+
+{% if item.rationale %}
+
+
+
{{ item.rationale }}
+
+{% endif %}
+
+{% if supersedes %}
+
+
+ {% for dec in supersedes %}
+
+ {% endfor %}
+
+{% endif %}
+{% endblock %}
diff --git a/templates/decision_form.html b/templates/decision_form.html
new file mode 100644
index 0000000..2e9d117
--- /dev/null
+++ b/templates/decision_form.html
@@ -0,0 +1,86 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+
+{% endblock %}
diff --git a/templates/decisions.html b/templates/decisions.html
new file mode 100644
index 0000000..2cae093
--- /dev/null
+++ b/templates/decisions.html
@@ -0,0 +1,53 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+
+
+{% if items %}
+
+ {% for item in items %}
+
+
{{ item.title }}
+
{{ item.status }}
+
{{ item.impact }}
+ {% if item.decided_at %}
+
{{ item.decided_at }}
+ {% endif %}
+ {% if item.meeting_title %}
+
{{ item.meeting_title }}
+ {% endif %}
+
+
+ {% endfor %}
+
+{% else %}
+
+{% endif %}
+{% endblock %}
diff --git a/templates/file_preview.html b/templates/file_preview.html
new file mode 100644
index 0000000..066fa8d
--- /dev/null
+++ b/templates/file_preview.html
@@ -0,0 +1,47 @@
+{% extends "base.html" %}
+{% block content %}
+
+
Files
+
/
+
{{ item.original_filename }}
+
+
+
+
+
+
+{% if can_preview %}
+
+ {% if item.mime_type and item.mime_type.startswith('image/') %}
+

+ {% elif item.mime_type == 'application/pdf' %}
+
+ {% elif item.mime_type and item.mime_type.startswith('text/') %}
+
+ {% endif %}
+
+{% else %}
+
+{% endif %}
+{% endblock %}
diff --git a/templates/file_upload.html b/templates/file_upload.html
new file mode 100644
index 0000000..64f3fac
--- /dev/null
+++ b/templates/file_upload.html
@@ -0,0 +1,37 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+
+
+
+{% endblock %}
diff --git a/templates/files.html b/templates/files.html
new file mode 100644
index 0000000..57351f7
--- /dev/null
+++ b/templates/files.html
@@ -0,0 +1,40 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+{% if items %}
+
+ {% for item in items %}
+
+
+ {{ item.original_filename }}
+
+ {% if item.mime_type %}
+
{{ item.mime_type.split('/')|last }}
+ {% endif %}
+ {% if item.size_bytes %}
+
{{ "%.1f"|format(item.size_bytes / 1024) }} KB
+ {% endif %}
+ {% if item.description %}
+
{{ item.description[:50] }}
+ {% endif %}
+
+
+ {% endfor %}
+
+{% else %}
+
+{% endif %}
+{% endblock %}
diff --git a/templates/meeting_detail.html b/templates/meeting_detail.html
new file mode 100644
index 0000000..1a13da6
--- /dev/null
+++ b/templates/meeting_detail.html
@@ -0,0 +1,119 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+
+
+
+
+
+{% if item.agenda %}
+
+{% endif %}
+
+
+{% if item.notes_body %}
+
+
+
{{ item.notes_body }}
+
+{% endif %}
+
+
+{% if item.transcript %}
+
+
+
{{ item.transcript }}
+
+{% endif %}
+
+
+
+
+
+
+
+
+ {% 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 %}
+
+
+ {% for dec in decisions %}
+
+ {% endfor %}
+
+{% endif %}
+
+
+{% if attendees %}
+
+
+ {% for att in attendees %}
+
+ {% endfor %}
+
+{% endif %}
+{% endblock %}
diff --git a/templates/meeting_form.html b/templates/meeting_form.html
new file mode 100644
index 0000000..183b7ec
--- /dev/null
+++ b/templates/meeting_form.html
@@ -0,0 +1,102 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+
+{% endblock %}
diff --git a/templates/meetings.html b/templates/meetings.html
new file mode 100644
index 0000000..27839af
--- /dev/null
+++ b/templates/meetings.html
@@ -0,0 +1,46 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+
+
+{% if items %}
+
+ {% for item in items %}
+
+
{{ item.title }}
+
{{ item.meeting_date }}
+ {% if item.location %}
+
{{ item.location }}
+ {% endif %}
+ {% if item.action_count %}
+
{{ item.action_count }} action{{ 's' if item.action_count != 1 }}
+ {% endif %}
+
{{ item.status }}
+
+
+ {% endfor %}
+
+{% else %}
+
+{% endif %}
+{% endblock %}