{% extends "helpdesk/public_base.html" %} {% load i18n bootstrap4form %} {% block page_title %}{% trans "Welcome to Helpdesk" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block helpdesk_body %}
{% if tickets.count%}
{% if sweetify %} {% for message in sweetify %} {% if message.tags == 'success' %}
{{ message }}
{% endif %} {% endfor %} {% endif %}

Tickets

{% for ticket in tickets%} {% endfor %}
ID Title Department Description Status Date Created
{{ticket.id}} {{ticket.title}} {{ticket.queue}} {{ticket.description}} {{ticket.get_status}} {{ticket.created}}
{%else%}

You currently havent opened any yet

{%endif%}
{% endblock %} {% block helpdesk_js %} {{ form.media.js }} {% endblock %}