{% extends "base.html" %} {% block title %}Müllabfuhr{% endblock %} {% block content %}
{% if collections %}
{% for collection in collections %} {% endfor %}
Datum Müllart Adresse Aktionen
{{ collection.date.strftime('%d.%m.%Y') }} {% if collection.garbage_type == 'RESTMUELL' %} {{ collection.type_display }} {% elif collection.garbage_type == 'PAPIER' %} {{ collection.type_display }} {% elif collection.garbage_type == 'GELBER_SACK' %} {{ collection.type_display }} {% else %} {{ collection.type_display }} {% endif %} {{ collection.full_address }}
Bearbeiten
{% else %}
Keine anstehenden Abholtermine. Neuen Termin hinzufügen.
{% endif %}
Kalender-Abonnements

Die Abholtermine können als iCal-Kalender abonniert werden:

  • Alle Termine .ics
  • {% for gtype in garbage_types %}
  • {% if gtype.name == 'RESTMUELL' %} {{ gtype.value }} {% elif gtype.name == 'PAPIER' %} {{ gtype.value }} {% elif gtype.name == 'GELBER_SACK' %} {{ gtype.value }} {% endif %} .ics
  • {% endfor %}
{% endblock %}