| {{ ticket.id }} |
{% if ticket.subject is empty %}
N/A
{% else %}
{{ ticket.subject }}
{% endif %}
|
{% if ticket.description is empty %}
N/A
{% else %}
{{ ticket.description }}
{% endif %}
|
{% if ticket.status is empty %}
N/A
{% else %}
{{ ticket.status|upper }}
{% endif %}
|
|