{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Support Center - Gvelo Enterprise Platform{% endblock %} {% block body_class %}operational-page ops-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Support Center

Tickets, diagnostics export, AI-assisted troubleshooting, and remote support preparation.

Report An Issue

Recent Tickets

{% for ticket in snapshot.tickets %} {% else %} {% endfor %}
IDCategorySubjectPriorityStatusCreated
#{{ ticket.id }}{{ ticket.category }}{{ ticket.subject }}{{ ticket.priority }}{{ ticket.status }}{{ ticket.created_at }}
No support tickets yet.

SLA Queue

{% for item in snapshot.sla_queue %}
{{ item.priority|title }} Ticket #{{ item.id }}

{{ item.status }} - respond in {{ item.response_minutes or 'n/a' }} minutes, resolve in {{ item.resolution_minutes or 'n/a' }} minutes.

{% else %}
No open SLA queue.
{% endfor %}

Resolution Metrics

Average response: {{ "%.1f"|format(snapshot.resolution_metrics.avg_response or 0) }} minutes

Average resolution: {{ "%.1f"|format(snapshot.resolution_metrics.avg_resolution or 0) }} minutes

Satisfaction: {{ "%.1f"|format(snapshot.resolution_metrics.satisfaction or 0) }}

Diagnostics Summary

Support diagnostics are shown here as an operational page summary instead of opening raw JSON.

Database

{{ snapshot.diagnostics.database|title }}

Readiness

{{ snapshot.diagnostics.readiness.status|replace('_', ' ')|title }} - score {{ snapshot.diagnostics.readiness.score }}

Generated

{{ snapshot.diagnostics.generated_at }}

{% for name, count in snapshot.diagnostics.table_counts.items() %} {% endfor %}
AreaCount
{{ name|replace('_', ' ')|title }}{{ count }}
{% endblock %}