{% extends "layout.html" %} {% from "macros.html" import render_table %} {% block title %}Protokoll{% endblock %} {% block content %}
From etherpad {% if protocol.source is not none %} Download Quelltext {% endif %} {% if protocol.is_done() %} Protokoll editieren {% endif %} Etherpad Typ

Protokoll: {{protocol.protocoltype.name}} vom {{protocol.date|datify}}

{% if protocol.is_done() %}

Datum: {{protocol.date|datify_long}}

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

Ort: {{protocol.location}}

Protokollant: {{protocol.author}}

Anwesende: {{protocol.participants}}

{% else %}

Geplant: {{protocol.date|datify_long}}

{% endif %}

Tagesordnung

    {% if not protocol.has_nonplanned_tops() %} {% for default_top in protocol.protocoltype.default_tops %} {% if not default_top.is_at_end() %}
  • {{default_top.name}}
  • {% endif %} {% endfor %} {% endif %} {% for top in protocol.tops %}
  • {{top.name}}
  • {% endfor %} {% if not protocol.has_nonplanned_tops() %} {% for default_top in protocol.protocoltype.default_tops %} {% if default_top.is_at_end() %}
  • {{default_top.name}}
  • {% endif %} {% endfor %} {% endif %}
{% if protocol.is_done() %}

Beschlüsse

    {% for decision in protocol.decisions %}
  • {{decision.content}}
  • {% endfor %}
{% endif %}
{% if protocol.is_done() %}

Todos dieser Sitzung Aktuelle Todos

    {% for todo in protocol.get_originating_todos() %}
  • {{todo.render_html()|safe}}
  • {% endfor %}
{% endif %} {% if protocol.errors|length > 0 %} {{render_table(errors_table)}} {% endif %} {% if protocol.documents|length > 0 %}

Anhang

{# TODO: render documents table here #} {% endif %}
{% endblock %}