{% extends 'base.html' %} {% block title %}My Tickets - Marketing - Optinet Global Links{% endblock %} {% block extra_css %} {% include 'customers/marketing_nav.html' %} {% endblock %} {% block content %}
{% include 'customers/marketing_nav.html' %}

My Tickets

Support tickets created by you

{{ total_tickets }}

Total Tickets

{{ open_tickets }}

Open

{{ in_progress_tickets }}

In Progress

{{ resolved_tickets }}

Resolved
Clear
{% if page_obj %}
{% for ticket in page_obj %}
{{ ticket.ticket_id }}
{{ ticket.customer_name }}
{{ ticket.get_priority_display }} {{ ticket.get_status_display }}
{{ ticket.title }}

{{ ticket.description|truncatewords:20 }}

Created {{ ticket.created_at|date:"M d, Y" }} View
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

No Tickets Found

You haven't created any tickets yet or no tickets match your filters.

Create Your First Ticket
{% endif %}
{% endblock %}