{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
Total Tickets
{{ stats.total }}
Unread
{{ stats.unread }}
Open
{{ stats.open }}
Avg Response (3mo)
{% if stats.avg_response_hours is not none %}{{ stats.avg_response_hours }}h{% else %}—{% endif %}
Net Revenue
€{{ revenue_stats.total_revenue }}
Avg €{{ revenue_stats.avg_order_value }}/order
Period Orders
{{ revenue_stats.total_orders }}
New Tickets
{{ period_ticket_stats.new_tickets }}
Inbound Messages
{{ period_ticket_stats.inbound_messages }}
Values may slightly differ from the Addons website.
{% endif %} {# ── Charts section ── #} {% if revenue_stats and revenue_stats.total_orders > 0 %}| #{{ t.id }} | {{ t.subject }} | {% if t.status == 'open' %} Open {% elif t.status == 'in_progress' %} In Progress {% elif t.status == 'waiting_customer' %} Waiting {% elif t.status == 'closed' %} Closed {% endif %} | {% if t.priority == 'p1' %} P1 {% elif t.priority == 'p2' %} P2 {% elif t.priority == 'p3' %} P3 {% else %} P4 {% endif %} | {{ t.last_activity_at.strftime('%Y-%m-%d %H:%M') if t.last_activity_at else '-' }} |
| No tickets yet. | ||||