{% extends "shared/frontend/base.html" %} {% block title %}Arkiverede Tickets - BMC Hub{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Arkiverede Tickets

Historiske tickets importeret fra Simply-CRM

Søg
Organisation
Kontakt
Dato fra
Dato til
Nulstil
{% if tickets %}
{% for ticket in tickets %} {% endfor %}
Ticket Organisation Kontakt Email From Løsning Kommentarer Tid brugt Status Oprettet
{% if ticket.ticket_number %} {{ ticket.ticket_number }}
{% endif %} {{ ticket.title or '-' }}
{{ ticket.organization_name or '-' }} {{ ticket.contact_name or '-' }} {{ ticket.email_from or '-' }} {% if ticket.solution and ticket.solution.strip() %} {{ ticket.solution[:120] }}{% if ticket.solution|length > 120 %}...{% endif %} {% else %} - {% endif %} {{ ticket.message_count or 0 }} {% if ticket.time_spent_hours is not none %} {{ '%.2f'|format(ticket.time_spent_hours) }} t {% else %} - {% endif %} {% if ticket.status %} {{ ticket.status.replace('_', ' ').title() }} {% else %} - {% endif %} {% if ticket.source_created_at %} {{ ticket.source_created_at.strftime('%Y-%m-%d') }} {% else %} - {% endif %}
{% else %}

Ingen arkiverede tickets fundet

Prøv at justere din søgning eller importer data fra Simply-CRM.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}