{# Overview is the project's at-a-glance: what it is, the newest meetings to re-enter, and the accepted minutes across it. The full meetings, glossary and media inventory each have their own tab — this is not a dashboard. #}
{{ trn("{count} meeting", "{count} meetings", meeting_count, count=meeting_count) }} {{ trn("{count} term", "{count} terms", term_count, count=term_count) }}

{{ tr("Recent meetings") }}

{% if recent %} {% else %}
{{ tr("No meetings yet.") }}
{% endif %} {# Minutes across the project (ticket 16): one row per meeting that has accepted minutes, pointing at the meeting view where they are shown in full. #}

{{ tr("Minutes") }}

{% if minutes %} {% for row in minutes %} {% endfor %}
{{ tr("Meeting") }} {{ tr("Accepted") }}
{{ row.meeting.title }} {% if row.heading %}
{{ row.heading }}
{% endif %}
{{ row.artifact.created_at }} {{ tr("Open") }}
{% else %}
{{ tr("No accepted minutes yet.") }}
{% endif %}