{% extends 'frontend/layouts/index.html.twig' %} {% set active = 'app_front_tickets' %} {% set breadcrumbs = [ { 'link': path('app_front_dashboard'), 'title': 'Home' } , { 'title': 'Support Tickets' }, { 'link': path('app_front_tickets'), 'title': 'Tickets' }, { 'title': 'Chat' } ]%} {% block stylesheets %} {% endblock %} {% block content %}
Subject: {{ ticket.subject }}
Category: {{ ticket.category.name }}
{%if product is defined and product is not empty %}
Product Name: {{ product }}
{% endif %}
Ticket created: {{ ticket.createdat|date('F d, Y') }}
Description: {{ ticket.description }}
Status: {{ticket.status|upper}}
{{ include('common/message.html.twig') }}
{% endblock %} {% block javascripts %} {% include 'common/ticket_conversation.js.twig' %} {% endblock %}