{% load custom_tags_and_filters %}
{% for ticket in ostickets %}
{% include 'NEMO_osticket/snippets/osticket_details.html' with ticket=ticket %}
{% empty %}
{% if not osticket_api_available %}
There are no open tickets for this tool.
{% endif %}
{% endfor %}
{% if osticket_api_available %}
{% url 'osticket_create_tool_ticket' tool_id as create_ticket_url %}
{% include 'NEMO_osticket/snippets/osticket_create_ticket.html' with create_ticket_url=create_ticket_url %}
{% endif %}