{% extends "base.html" %} {% block content %}

Support Inbox

{% for t in threads %}
Thread #{{ t.id }} • {{ t.status|title }}
{% if t.user %}User: {{ t.user.username }}{% else %}Guest: {{ t.session_key|default:"-" }}{% endif %} {% if t.last_preview %} — {{ t.last_preview }}{% endif %}
{{ t.updated_at|date:"M d, Y H:i" }}
{% empty %}
No support threads yet.
{% endfor %}
{% endblock %}