{% extends "base.html" %} {% block title %}My Tickets - Actix MVC App{% endblock %} {% block content %}

My Support Tickets

New Ticket
{% if tickets | length > 0 %}
{% for ticket in tickets %} {% endfor %}
ID Title Status Priority Created Updated Actions
{{ ticket.id | truncate(length=8) }} {{ ticket.title }} {{ ticket.status }} {{ ticket.priority }} {{ ticket.created_at | date(format="%Y-%m-%d %H:%M") }} {{ ticket.updated_at | date(format="%Y-%m-%d %H:%M") }} View
{% else %}

No tickets found!

You haven't created any support tickets yet.


Create Your First Ticket

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}