{% extends "base.html" %} {% block title %}Kalender{% endblock %} {% block content %}

Kalender{% if active_tag %} für {{ active_tag }}{% endif %}

Von {{ start.strftime("%A, dem %d.%m.%Y") }}, bis {{ end.strftime("%A, den %d.%m.%Y") }}

{% if root %}

Zurück zum Hauptkalender

{% endif %} {% if tags %}

Tag-Cloud

{% endif %} {% for date in dates %}

{{ date.title|e }}

Datum:
{% if date.full_time %} {% if date.start.date() == date.end.date() %} Am {{ date.start.strftime("%A, dem %d.%m.%Y") }}
{% else %} Von {{ date.start.strftime("%A, dem %d.%m.%Y") }}, bis {{ date.end.strftime("%A, den %d.%m.%Y") }}
{% endif %} {% elif date.start.date() == date.end.date() %} Am {{ date.start.strftime("%A, dem %d.%m.%Y, von %H:%M Uhr") }} bis {{ date.end.strftime("%H:%M Uhr") }}
{% else %} Von {{ date.start.strftime("%A, dem %d.%m.%Y, %H:%M Uhr") }} bis {{ date.end.strftime("%A, dem %d.%m.%Y, %H:%M Uhr") }}
{% endif %}
Ort:
{{ date.location }}
Teilnehmer:
    {% for p in date.participants %} {% if 'members' in p %}
  • {{ p.display_name }}
  • {% else %}
  • {{ p.display_name|replace('.', ' ')|title }}
  • {% endif %} {% endfor %}
{% if date.tags %}
Tags:
{% for tag in date.tags %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
{% if date.description %}

{{ date.description|e }}

{% endif %}
{% endfor %} {% endblock %}