{% extends 'base.html.twig' %} {% block title %}Ticket{% endblock %} {% block body %}
{{ include('admin/partials/top-menu.html.twig') }}
{{ include('admin/partials/sidebar.html.twig') }}

Ticket Bilgileri

{% if TICKET[0].status == 1 %} Çözüldü {% elseif TICKET[0].status == 0 %} Beklemede {% elseif TICKET[0].status == 2 %} İptal {% elseif TICKET[0].status == 3 %} Kontrol Ediliyor {% endif %}
Takip Numarası:
#{{ TICKET[0].id }}
Konu:
{{ TICKET[0].subject is not null ? TICKET[0].subject.title : 'Bilinmiyor' }}
Tarih:
{{ TICKET[0].createdDate|date('d.m.Y H:i') }}
{% if TICKET[0].user.companyName is defined and TICKET[0].user.companyName is not null %}
Firma:
{{ TICKET[0].user.companyName }}
{% endif %} {% if TICKET[0].user.username is defined and TICKET[0].user.username is not null %}
Gönderen:
{{ TICKET[0].user.username }}
{% endif %}
Açıklama:
{{ TICKET[0].description|raw }}
{% for message in app.flashes('danger') %}
{{ message }}
{% endfor %} {% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% if ERRORS is defined %}
    {% for error in ERRORS %}
  • Hata! {{ error.message }}
  • {% endfor %}
{% endif %}
{% if TICKET['user_name'] is defined and TICKET['user_name'] is not null %}

* Bu bildirim ile {{ TICKET['user_name'] }} ilgilenmektedir.Bu bildirimi başka bir personele aktarmak isterseniz gerekli seçimi yaptıktan sonra formu gönderiniz.

{% else %}

* Bu bildirim ile hiç bir personel ilgilenmemektedir.Bu bildirimi bir personele aktarmak isterseniz gerekli seçimi yaptıktan sonra formu gönderiniz.

{% endif %}
{{ include('admin/partials/footer.html.twig') }}
{% endblock %} {% block ck %} {% endblock %}