-
{{post.title | tags_to_url}}
-
{{post.subtitle | tags_to_url}}
+
{{ post.title|tags_to_url }}
+
{{ post.subtitle|default_if_none:" "|tags_to_url }}
+
Nächster Artikel
-
-
- {% include 'posts/partials/_date_box.html' %}
+
+ {% include 'posts/partials/_date_box.html' %}
+
+
+ Start: {{ post.event_start }}
+ Ende: {{ post.event_end }}
+
+ {% if post.has_agenda %}
+
Agenda
+ {% endif %}
+
+ {% if post.has_protocol %}
+
Protokoll
+ {% endif %}
+
+ {% if request.user.is_authenticated %}
+
------
+
Bearbeiten
+ {% endif %}
+
+
+ {% for tag in post.get_tagnames %}
+ {{ tag|tags_to_url }}
+ {% endfor %}
+
+
+ {% if post.has_agenda %}
+
Agenda
+ {{ post.agenda_html|safe }}
+ {% endif %}
+
+ {{ post.body|safe|add_internal_links|tags_to_url }}
+
-
- Start: {{post.event_start}}
- Ende: {{post.event_end}}
-
- {% if post.has_agenda %}
-
Agenda
- {% endif %}
-
- {% if post.has_protocol %}
-
Protokoll
- {% endif %}
-
- {% if request.user.is_authenticated %}
-
------
-
Bearbeiten
- {% endif %}
-
-
- {% for tag in post.get_tagnames %}
- {{tag |tags_to_url}}
- {% endfor %}
-
-
- {% if post.has_agenda %}
-
Agenda
- {{post.agenda_html |safe}}
- {% endif %}
-
- {{post.body | safe | add_internal_links | tags_to_url}}
-
-