{% extends "demostat/base.html" %} {% block title %}{{ demo.title }} am {{ demo.date|date:"d.m.Y" }}{% endblock %} {% block header %}

{{ demo.title }} am {{ demo.date|date:"d.m.Y" }}

{% for tag in demo.tags.all %}{{ tag.name }}{% endfor %}
{% endblock%} {% block content %}
Wann?

{{ demo.date|date:"d.m.Y H:i" }} Uhr

Wo?

{{ demo.location.name }}

Was?

{{ demo.description }}

{% if demo.link_set.all %}
{% for link in demo.link_set.all|slice:":4" %} {{ link.title }} {% endfor %}
{% endif %} {% if demo.location.lat and demo.location.lon %}

Klicken um die Karte freizuschalten

{% endif %} {% if demo.link_set.all %}
Links
{% for link in demo.link_set.all %} {{ link.title }} {% endfor %}
{% endif %} {% if demo.note %}
Anmerkungen

{{ demo.note }}

{% endif %}
Teilen
Permalink
{% endblock %}