{% extends "layouts/base.html" %} {% load static %} {% block title %} Tickets {% endblock title %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}
  • Filters
  • {% if priorities %}
  • Priority
    {% for priority in priorities %}
    {% endfor %}
  • {% endif %} {% if departments %}
  • Department
    {% for department in departments %}
    {% endfor %}
  • {% endif %} {% if tags %}
  • Tags
    {% for tag in tags %}
    {% endfor %}
  • {% endif %}
  • Delete
  • Mark as Spam
  • Star
{% for ticket in tickets %}
{{ ticket.author.fullname }}
{% if ticket.is_older_than_day %} {{ ticket.timestamp|date:"D, w M Y" }} {% else %} {{ ticket.timestamp|date:"H:i" }} {% endif %} {% if ticket.is_edited %} • edited {% endif %}
{{ ticket.title }}
{{ ticket.description|safe }}
{% endfor %}
  • Delete
  • Mark as Spam
  • Star
    test

{% csrf_token %}

New Ticket

Briefly describe the subject of the ticket.
Describe your issue in detail here.
How important is this ticket?
Use tags to categorize this ticket.
{% endblock content %} {% block javascripts %} {% endblock javascripts %}