diff --git a/helpdesk/templates/helpdesk/dashboard.html b/helpdesk/templates/helpdesk/dashboard.html index 79225c6c..47e0f676 100644 --- a/helpdesk/templates/helpdesk/dashboard.html +++ b/helpdesk/templates/helpdesk/dashboard.html @@ -16,20 +16,20 @@ {% if all_tickets_reported_by_current_user %} {% trans "All Tickets submitted by you" as ticket_list_caption %} -{% trans "atrbcu_page" as page_var} +{% trans "atrbcu_page" as page_var %} {% include 'helpdesk/include/tickets.html' with ticket_list=all_tickets_reported_by_current_user ticket_list_empty_message="" page_var=page_var %} {% endif %} {% trans "Open Tickets assigned to you (you are working on this ticket)" as ticket_list_caption %} {% trans "You have no tickets assigned to you." as no_assigned_tickets %} -{% trans "ut_page" as page_var} +{% trans "ut_page" as page_var %} {% include 'helpdesk/include/tickets.html' with ticket_list=user_tickets ticket_list_empty_message=no_assigned_tickets page_var=page_var %} {% include 'helpdesk/include/unassigned.html' %} {% if user_tickets_closed_resolved %} {% trans "Closed & resolved Tickets you used to work on" as ticket_list_caption %} -{% trans "utcr_page" as page_var} +{% trans "utcr_page" as page_var %} {% include 'helpdesk/include/tickets.html' with ticket_list=user_tickets_closed_resolved ticket_list_empty_message="" page_var=page_var %} {% endif %}