{% extends 'dav_events/base.html' %} {% load bootstrap3 %} {% load i18n %} {% load dav_events %} {% block head-title %}{{ event }} - {{ block.super }}{% endblock head-title %} {% block modals %} {% endblock modals %} {% block page-container-fluid %}
{% if has_permission_submit %} {% endif %} {% if has_permission_accept %} {% endif %} {% if has_permission_publish %} {% if is_publishing_any %} {% bootstrap_icon 'check' %}  {% else %} {% bootstrap_icon 'unchecked' %}  {% endif %} {% trans 'Veröffentlichung bestätigen' %} {% endif %} {% if has_permission_realize and is_started and not is_canceled %} {% if is_realized %} {% bootstrap_icon 'check' %}  {% else %} {% bootstrap_icon 'unchecked' %}  {% endif %} {% trans 'Durchgeführt' %} {% endif %} {% if has_permission_cancel and is_submitted and not is_realized %} {% if is_canceled %} {% bootstrap_icon 'check' %}  {% else %} {% bootstrap_icon 'unchecked' %}  {% endif %} {% trans 'Abgesagt' %} {% endif %} {% if has_permission_clear %} {% if is_cleared %} {% bootstrap_icon 'check' %}  {% else %} {% bootstrap_icon 'unchecked' %}  {% endif %} {% trans 'Abgerechnet' %} {% endif %} {% bootstrap_icon 'duplicate' %}  {% trans 'Kopieren' %}
{{ event.render_as_html }}
{% for flag in event.flags.all %}
{% bootstrap_icon 'check' %} {{ flag.status.label }}:
{{ flag.timestamp|date:'l, d. F Y, H:i' }} {% trans 'Uhr' %}
{% trans 'von' %} {{ flag.user.get_full_name|default:flag.user }}
{% endfor %}
{% render_event_changelog event %}
{% if event.internal_note %}
{% trans 'Bearbeitungshinweis' %}
{{ event.internal_note|linebreaksbr }}
{% endif %}
{% trans 'Veröffentlichung' %}
{% if event.planned_publication_date %} {{ event.planned_publication_date|date:'l, d. F Y' }} {% else %} {% trans 'Unverzüglich' %} {% endif %}
{% endblock page-container-fluid %}