{% extends "layout.html" %} {% from "macros.html" import render_table, render_form %} {% block title %}Protokoll{% endblock %} {% set loggedin = check_login() %} {% set user = current_user() %} {% set has_public_view_right = protocol.protocoltype.has_public_view_right(user) %} {% set has_private_view_right = protocol.protocoltype.has_private_view_right(user) %} {% set has_modify_right = protocol.protocoltype.has_modify_right(user) %} {% block content %}
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 %} {% else %} {% if protocol.date is not none %}Geplant: {{protocol.date|datify_long}}{% endif %}
{% endif %}