{% extends "shared/frontend/base.html" %} {% block title %}Arkiverede Tickets - BMC Hub{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Søg i historiske tickets, filtrer på organisation og kontakt, og gå direkte fra tabellen til et mere læsbart detail-view.
Resultatlisten opdateres automatisk, mens du søger eller ændrer datoer.
Fjernkontrol mod Simply og vTiger samt lokale tællere for tickets og beskeder.
Sammenlign remote `external_id`s mod lokale imports og se konkrete mangler.
| Ticket | Organisation | Kontakt | Løsning | Beskeder | Tid | Status | Oprettet | |
|---|---|---|---|---|---|---|---|---|
|
{% if ticket.ticket_number %}
{{ ticket.ticket_number }}
{% endif %}
{{ ticket.title or '-' }}
{{ (ticket.description or ticket.solution or 'Ingen forhåndsvisning')[:130] }}{% if (ticket.description or ticket.solution or '')|length > 130 %}...{% endif %}
|
{{ 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 %} Ukendt {% endif %} | {% if ticket.source_created_at %} {{ ticket.source_created_at.strftime('%d/%m/%Y') }} {% else %} - {% endif %} |
Prøv at justere søgning, kontakt, organisation eller datointerval.