{% extends 'base.html.twig' %} {% block title %}Správa požadavků podpory - Administrace{% endblock %} {% block body %}

Support Tickets

Manage and respond to customer support requests

All Support Tickets ({{ tickets.getTotalItemCount }})

{% if tickets.getTotalItemCount > 0 %}
{% for ticket in tickets %} {% endfor %}
ID Status Customer Email Subject Created Replied Actions
#{{ ticket.id }} {{ ticket.statusLabel }} {{ ticket.customer.fullName }} {{ ticket.email }} {{ ticket.subject }}
{{ ticket.message|length > 60 ? ticket.message|slice(0, 60) ~ '...' : ticket.message }}
{{ ticket.createdAt|date('M d, Y g:i A') }} {% if ticket.repliedAt %} {{ ticket.repliedAt|date('M d, Y g:i A') }} {% else %} - {% endif %}
{{ ticket.adminReply ? 'View' : 'Reply' }} {% if ticket.status != 'closed' %}
{% endif %}
{# Pagination controls #}
{{ knp_pagination_render(tickets) }}
{% else %}
💬

No Support Tickets Yet

No customer support tickets have been submitted yet.

{% endif %}
{% endblock %}