{% extends "base.html" %} {% block content %}
{% if items %}
{% for item in items %}
{% with reorder_url="/meetings/reorder", item_id=item.id %} {% include 'partials/reorder_arrows.html' %} {% endwith %} {{ 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 }}
Edit
{% endfor %}
{% else %}
📅
No meetings yet
Schedule First Meeting
{% endif %} {% endblock %}