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

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

{% if demo.group and demo.group != demo %}

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

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

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

Wo?

{% if demo.location.region %}{{ demo.location.name }}{% else %}{{ demo.location.name }}{% endif %}

Wer?
{% for organisation in demo.organisation.all %}

{{ organisation.name }}

{% endfor %}
Was?

{{ demo.description }}

{% if demo.link_set.all %} {% if demo.location.lat and demo.location.lon or demo.demo_set.all %}
{% for link in demo.link_set.all|slice:":4" %} {{ link.title }} {% endfor %}
{% endif %} {% endif %} {% if demo.demo_set.all %}
{% for de in demo.demo_set.all %} {% if de != demo %}
{% include "demostat/components/demo_card.html" with demo=de %}
{% endif %} {% 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 %} {% block javascript %} {% endblock %}