{% extends "base.html" %} {% block title %}Inbox{% endblock %} {% block content %}
{# ── Header row ── #}

Inbox — {% if filters.presale %}Pre Sale Messages{% elif filters.status == 'open' %}Open{% elif filters.status == 'in_progress' %}In Progress{% elif filters.status == 'waiting_customer' %}Waiting{% elif filters.status == 'closed' %}Closed{% else %}All Tickets{% endif %}

{% if last_msg_sync %} last synced (sync now) {% endif %}
{{ total_count }} ticket{{ 's' if total_count != 1 }}
{# ── Filters ── #}
{% if filters.status or filters.priority or filters.tag or filters.search or filters.product %} Clear {% endif %}
{# ── Ticket table ── #}
{% for ticket in tickets %} {# Star toggle #} {# ID + external link #} {# Last message preview #} {# Subject + snippet #} {# Product (icon only, tooltip shows name) #} {# PS Version #} {# Status badge #} {# Priority badge #} {# Support status #} {# Last activity #} {% else %} {% endfor %}
Star Subject Status
{# Mobile-only: ID + badges inline above subject #}
#{{ ticket.provider_thread_id or ticket.id }} {% if not ticket.is_read %}{% endif %} {% if ticket.has_ai %}psychology{% endif %} {% if ticket.customer_revenue and ticket.customer_revenue|float > 500 %}VIP{% elif ticket.customer_revenue and ticket.customer_revenue|float > 100 %}military_tech{% endif %}
{{ ticket.subject }} {% if ticket.last_snippet %}

{{ ticket.last_snippet }}

{% endif %}
{% if ticket.status == 'open' %} Open {% elif ticket.status == 'in_progress' %} In Progress {% elif ticket.status == 'waiting_customer' %} Waiting {% elif ticket.status == 'closed' %} Closed {% else %} {{ ticket.status }} {% endif %}
inbox

No tickets found.

Try adjusting your filters or sync new messages.

{# ── Pagination ── #} {% if total_pages > 1 %}

Page {{ page }} of {{ total_pages }}

{% if page > 1 %} chevron_left {% endif %} {% for p in range(1, total_pages + 1) %} {% if p == page %} {{ p }} {% elif p == 1 or p == total_pages or (p >= page - 2 and p <= page + 2) %} {{ p }} {% elif p == 2 or p == total_pages - 1 %} {% endif %} {% endfor %} {% if page < total_pages %} chevron_right {% endif %}
{% endif %}
{% endblock %}