{% extends 'base.html' %} {% block title %}Space Mitteilungen{% endblock %} {% block content %}

Space Mitteilungen

Neue Mitteilung
{% if notices %}
{% for notice in notices %} {% endfor %}
Mitteilung Space geschlossen Status Start Ende Aktionen
{{ notice.content or '-' }} {% if notice.hash == 'spaceclosed' %} Ja {% else %} Nein {% endif %} {% if notice.state_open %} Aktiv {% else %} Beendet {% endif %} {% if notice.start_date %} {{ notice.start_date.strftime('%d.%m.%Y %H:%M') }} {% else %}-{% endif %} {% if notice.end_date %} {{ notice.end_date.strftime('%d.%m.%Y %H:%M') }} {% else %}-{% endif %}
{% if notice.state_open %}
{% endif %}
{% else %}

Keine Mitteilungen vorhanden.

{% endif %}
{% endblock %}