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 %}