{% extends "client/base.html" %} {% load money %} {% block title %}Support — client portal{% endblock %} {% block heading %}Support tickets{% endblock %} {% block content %}

Your tickets

{{ tickets|length }} total
    {% for t in tickets %}
  • {{ t.reference }} · {{ t.created_at|date:"j M Y" }} · {{ t.replies.count }} repl{{ t.replies.count|pluralize:"y,ies" }}
    {{ t.get_priority_display }} {{ t.get_status_display }}
  • {% empty %}
  • No tickets yet. Raise one on the right when something needs fixing.
  • {% endfor %}

New ticket

{% csrf_token %}
{% with msg=errors.subject %}{% include "partials/error.html" %}{% endwith %}
{% with msg=errors.message %}{% include "partials/error.html" %}{% endwith %}
{% endblock %}