{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %} {% trans "My Tickets" %} {% endblock title %} {% block content %}

{% trans "Need Help?" %}

{% blocktrans %} Our support team is ready to assist you. Raise a new ticket below, and we'll get back to you as soon as possible. {% endblocktrans %}

{% trans "Raise a New Ticket" %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% trans "My Tickets" %}
{% include 'partials/search_box.html' %}
{% for ticket in tickets %} {% empty %} {% endfor %}
ID {% trans "Subject" %} {% trans "Status" %} {% trans "Priority" %} {% trans "Created" %} {% trans "Actions" %}
#{{ ticket.id }} {{ ticket.subject }} {{ ticket.get_status_display }} {{ ticket.get_priority_display }} {{ ticket.created_at|date:"M d, Y" }} {{ ticket.created_at|time:"H:i" }} {% comment %} {% trans "View" %} {% endcomment %}

{% trans "No tickets found." %}

{% trans "All your past and present tickets will appear here." %}

{% endblock %}