{% extends "layout.html" %} {% from "macros.html" import render_table, render_likes %} {% block title %}Startseite{% endblock %} {% block content %} {% if check_login() %}
{% endif %}

Nächste Sitzungen {% if check_login() %} Neu {% endif %}

{% if protocol is not none %}

Letztes Protokoll

Details anzeigen {% if protocol.protocoltype.has_modify_right(current_user()) %} Protokoll editieren {% endif %} {% if protocol.has_compiled_document() %} Download {% endif %}

Protokoll: {{protocol.protocoltype.name}} {% if protocol.date is not none %}vom {{protocol.date|datify}}{% endif %}

{% if protocol.date is not none %}

Datum: {{protocol.date|datify_long}}

{% endif %} {% if protocol.start_time is not none and protocol.end_time is not none %}

Zeit: von {{protocol.start_time|timify}} bis {{protocol.end_time|timify}}

{% endif %} {% for meta in protocol.metas %} {% if not meta.internal or show_private %}

{{meta.name}}: {{meta.value}}

{% endif %} {% endfor %}

Tagesordnung{% if has_modify_right and not protocol.has_nonplanned_tops() %} Top hinzufügen{% endif %}

{% include "protocol-tops-include.html" %}

Beschlüsse

    {% if has_public_view_right %} {% if protocol.decisions|length > 0 %} {% for decision in protocol.decisions %}
  • {{decision.content}} {{render_likes(decision.likes, decision_id=decision.id)}}
  • {% endfor %} {% else %}
  • Keine Beschlüsse
  • {% endif %} {% else %}
  • Protokoll und Beschlüsse sind in eine eingeschränkten Netzwerk erreichbar.
  • {% endif %}
{% endif %} {% if check_login() %}

Offene Todos Alle

{% endif %} {% endblock %}