{% extends "layout.html" %} {% from "macros.html" import render_table %} {% block title %}Startseite{% endblock %} {% block content %} {% if protocol is not none %}
{% endif %}

Anstehende Sitzungen {% if check_login() %} Neu {% endif %}

{% if check_login() %}

Offene Todos Alle

{% 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 %} {% if protocol.location is not none %}

Ort: {{protocol.location}}

{% endif %} {% if protocol.author is not none %}

Protokollant: {{protocol.author}}

{% endif %} {% if protocol.participants is not none %}

Anwesende: {{protocol.participants}}

{% endif %}

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

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

Beschlüsse

    {% if protocol.decisions|length > 0 %} {% for decision in protocol.decisions %}
  • {{decision.content}}
  • {% endfor %} {% else %}
  • Keine Beschlüsse
  • {% endif %}
{% endif %} {% endblock %}