<aclass="btn btn-danger"href="{{url_for("delete_protocol",protocol_id=protocol.id)}}"onclick="return confirm('Bist du dir sicher, dass du das Protokoll {{protocol.get_identifier()}} löschen möchtest?');">Löschen</a>
{% endif %}
</div>
{% endif %}
<divclass="row">
<divid="left-column"class="col-lg-6">
{% if protocol.is_done() %}
...
...
@@ -69,7 +75,7 @@
<h3>Tagesordnung{% if has_modify_right and not protocol.has_nonplanned_tops() %} <ahref="{{url_for("new_top",protocol_id=protocol.id)}}">Top hinzufügen</a>{% endif %}</h3>
{% include "protocol-tops-include.html" %}
{% if protocol.is_done() %}
{% if protocol.is_done() and has_public_view_right %}
<h3>Beschlüsse</h3>
<ul>
{% if protocol.decisions|length > 0 %}
...
...
@@ -105,7 +111,7 @@
{{render_table(errors_table)}}
{% endif %}
{% endif %}
{% if protocol.documents|length > 0 %}
{% if protocol.documents|length > 0 and has_public_view_right %}