{% extends "base.html" %} {% block title %}#{{ ticket.number }} · EPI-Support{% endblock %} {% block content %}

← zurück zur Übersicht

#{{ ticket.number }} – {{ ticket.title }}

in Zammad öffnen ↗
Status
{{ ticket.state }}
Priorität
{{ ticket.priority }}
Bearbeiter
{{ ticket.owner if ticket.owner and ticket.owner != '-' else '—' }}
Gruppe
{{ ticket.group }}
Artikel
{{ ticket.article_count }}
erstellt
{{ ticket.zammad_created_at|dt }}
zuletzt geändert
{{ ticket.zammad_updated_at|dt }}
geschlossen
{{ ticket.last_close_at|dt }}

Konversation{% if conversation %} ({{ conversation|length }}){% endif %}

{% if conv_error %}

Konversation konnte nicht geladen werden: {{ conv_error }}

{% elif conversation %}
{% for a in conversation %}
{{ a.sender or 'System' }} {{ a.frm }}
{% if a.subject %}
{{ a.subject }}
{% endif %}
{{ a.body }}
{% if a.attachments %} {% set imgs = a.attachments|selectattr('is_image')|list %} {% set files = a.attachments|rejectattr('is_image')|list %} {% if imgs %}
{% for att in imgs %} {{ att.filename }} {% endfor %}
{% endif %} {% if files %}
{% for att in files %} 📎 {% if att.id %}{{ att.filename }}{% else %}{{ att.filename }}{% endif %} {% endfor %}
{% endif %} {% endif %}
{% endfor %}
{% else %}

Keine Nachrichten vorhanden.

{% endif %} {% if ticket.state != 'closed' %}
{% include "_attach.html" %}
Geht nach Bestätigung live an EPI.
{% else %}

Ticket ist geschlossen – zum Antworten ggf. ein neues Ticket anlegen.

{% endif %}

Verlauf (von uns erfasst)

{% if timeline %} {% else %}

Seit Beobachtungsbeginn keine Änderung erfasst.

{% endif %}
{% endblock %} {% block scripts %}{% endblock %}