{% extends 'base.html' %} {% load post_helpers %} {% load admin_urls %} {% block extraheader %} {% endblock %} {% block content %}
    {% for t in post.tag_names %}
  • #{{ t }}
  • {% endfor %}

{{ post.title|tags_to_url }}

{% if author_image and author %}
{{ author.firstname }} am {{ post.date|date:"d. F Y" }}
{% elif post.author %}
{{ post.author }} am {{ post.date|date:"d. F Y" }}
{% else %}
fet.at Redaktion am {{ post.date|date:"d. F Y" }}
{% endif %}
{% if request.user.is_authenticated %} {% if post.post_type == 'N' %} {% elif post.post_type == 'E' %} {% elif post.post_type == 'F' %} {% endif %} {% endif %}
{% if post.post_type != 'N' %} {% endif %}
{% if request.user.is_authenticated %}
{% if post.has_agenda %} Agenda {% if filename_agenda %} {% endif %}
{% endif %} {% if post.has_protocol %} Protokoll {% if filename_protocol %} {% endif %}

{% endif %} {% endif %} {% if post.has_agenda %}

Agenda

{{ post.agenda_html|safe }}
{% elif post.body %} {{ post.body|safe|add_internal_links|tags_to_url }} {% endif %} {% if request.user.is_authenticated and post.has_protocol %}

Protokoll

{{ post.protocol_html|safe }} {% endif %}
{% if files %}
Dokumente: {% endif %}

Termindetails:

  • Start: {{ post.event_start|date }} um {{ post.event_start|time }} Uhr
  • Ende: {{ post.event_end|date }} um {{ post.event_end|time }} Uhr

{% if request.user.is_authenticated %} {% if post.post_type == 'N' %} Artikel bearbeiten {% elif post.post_type == 'E' %} Event bearbeiten {% elif post.post_type == 'F' %} FET Sitzung bearbeiten {% endif %} {% endif %}
{% if related_posts %}

Weiterlesen

{% for post in related_posts %}

{{ post.title | safe }}

{% if post.post_type != 'N' %} {{ post.event_start|date:"d. F Y" }} {% else %} {{ post.public_date|date:"d. F Y" }} {% endif %}
{% endfor %}
{% endif %}
{% endblock %}