diff --git a/helpdesk/templates/helpdesk/my_tickets.html b/helpdesk/templates/helpdesk/my_tickets.html index cde160a1..ab25a840 100644 --- a/helpdesk/templates/helpdesk/my_tickets.html +++ b/helpdesk/templates/helpdesk/my_tickets.html @@ -37,7 +37,9 @@ window.addEventListener('load', function() data.results.forEach(function(ticket) { $('#ticketsTable tbody').append(` - ${ticket.title} + + ${ticket.title} + ${ticket.queue.title} ${ticket.status} ${ticket.created} diff --git a/helpdesk/templates/helpdesk/public_view_ticket.html b/helpdesk/templates/helpdesk/public_view_ticket.html index 62f37a43..77de5af1 100644 --- a/helpdesk/templates/helpdesk/public_view_ticket.html +++ b/helpdesk/templates/helpdesk/public_view_ticket.html @@ -103,7 +103,10 @@
-
{% trans "You can insert ticket and queue details in your message. For more information, see the context help page." %}
+ {% url "helpdesk:help_context" as context_help_url %} + {% blocktrans %} +
You can insert ticket and queue details in your message. For more information, see the context help page.
+ {% endblocktrans %} {% if not ticket.can_be_resolved %}
{% trans "This ticket cannot be resolved or closed until the tickets it depends on are resolved." %}
{% endif %} {% if ticket.status == 1 %} diff --git a/helpdesk/templates/helpdesk/ticket.html b/helpdesk/templates/helpdesk/ticket.html index 8f0ede76..b61743f7 100644 --- a/helpdesk/templates/helpdesk/ticket.html +++ b/helpdesk/templates/helpdesk/ticket.html @@ -105,7 +105,10 @@
-
{% trans "You can insert ticket and queue details in your message. For more information, see the context help page." %}
+ {% url "helpdesk:help_context" as context_help_url %} + {% blocktrans %} +
You can insert ticket and queue details in your message. For more information, see the context help page.
+ {% endblocktrans %}
{% if not ticket.can_be_resolved %}
{% trans "This ticket cannot be resolved or closed until the tickets it depends on are resolved." %}
{% endif %} diff --git a/setup.py b/setup.py index f7543a11..7775cc8c 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup import sys -version = '1.1.0' +version = '1.2.0' # Provided as an attribute, so you can append to these instead