From b535acbb8fd877d5f36a1bfb1c8294011bc69dfb Mon Sep 17 00:00:00 2001 From: Ross Poulton Date: Tue, 13 Oct 2009 10:32:02 +0000 Subject: [PATCH] Issue #113: When clicking a queue name on the dashboard, show only open tickets by default. Thanks to Andreas Kotowicz for the suggestion. --- CHANGELOG | 4 ++++ templates/helpdesk/dashboard.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 5c601483..4c46e60f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -16,3 +16,7 @@ templaets, defaulting to English if no locale is provided. 2009-10-13 r142 Issue #117 Incorrect I18N usage in a few spots Patch thanks to hgeerts. + +2009-10-13 r143 Issue #113 - Clicking Queue names on the Dashboard was showing +all tickets; now only shows open tickets. Thanks to Andreas Kotowicz for the +sugestion. diff --git a/templates/helpdesk/dashboard.html b/templates/helpdesk/dashboard.html index 0e80f74d..51b5d49a 100644 --- a/templates/helpdesk/dashboard.html +++ b/templates/helpdesk/dashboard.html @@ -10,7 +10,7 @@ {% trans "Queue" %}{% trans "Open" %}{% trans "Resolved" %} {% for queue in dash_tickets %} -{{ queue.name }} +{{ queue.name }} {% if queue.open %}{% endif %}{{ queue.open }}{% if queue.open %}{% endif %} {% if queue.resolved %}{% endif %}{{ queue.resolved }}{% if queue.resolved %}{% endif %}