{% extends "layout.html" %} {% from "macros.html" import render_form %} {% block title %}Protokoll ändern{% endblock %} {% block content %}
{{render_form(edit_form, action_url=url_for("update_protocol", protocol_id=protocol.id), action_text="Ändern")}}

Protokoll herunterladen

{% if protocol.source is not none %} Download Quelltext {% endif %} Zurück {% if protocol.has_compiled_document() %} Download PDF {% endif %}

Neue Version hochladen

{{render_form(upload_form, action_url=url_for("upload_source_to_known_protocol", protocol_id=protocol.id), action_text="Hochladen", enctype="multipart/form-data")}}
{% endblock %}