{% extends 'base.html' %} {% block title %}Status-Übersicht{% endblock %} {% block content %}
| Typ | Inhalt | Status | Start | Ende | {% if current_user and '/nbspspaceadmin' in current_user.groups %}Aktionen | {% endif %}
|---|---|---|---|---|---|
| {{ type_names.get(status.type, status.type) }} | {{ status.content or '-' }} | {% if status.state_open %} Offen {% else %} Geschlossen {% endif %} | {% if status.start_date %}{{ status.start_date.strftime('%d.%m.%Y %H:%M') }}{% else %}-{% endif %} | {% if status.end_date %}{{ status.end_date.strftime('%d.%m.%Y %H:%M') }}{% else %}-{% endif %} | {% if current_user and '/nbspspaceadmin' in current_user.groups %}{% if status.state_open %} {% else %} - {% endif %} | {% endif %}
Keine Status-Einträge vorhanden.