From 3ef62a0570055da710328937e7f65dbb2c027c62 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 12 Aug 2002 06:17:09 +0000 Subject: import rt 2.0.14 --- rt/webrt/Admin/Queues/index.html | 52 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100755 rt/webrt/Admin/Queues/index.html (limited to 'rt/webrt/Admin/Queues/index.html') diff --git a/rt/webrt/Admin/Queues/index.html b/rt/webrt/Admin/Queues/index.html new file mode 100755 index 000000000..52dfb73c8 --- /dev/null +++ b/rt/webrt/Admin/Queues/index.html @@ -0,0 +1,52 @@ +<& /Admin/Elements/Header, Title => 'Admin queues' &> +<& /Admin/Elements/Tabs, current_tab => 'Admin/Queues/' &> + + +<& /Elements/TitleBoxStart, title => 'Select a queue' &> + + + + + + +
+ +
+ + Include disabled queues in listing. +
+
+
+
+ +% } + +<%$caption%>
+
    +%if ($queues->Count == 0) { +
  • No queues matching search criteria found. +% } +%while ( $queue = $queues->Next) { +
  • <%$queue->Name%>
  • +%} + +
+
+<& /Elements/TitleBoxEnd &> + +<%INIT> +my ($queue, $caption); +my $queues = new RT::Queues($session{'CurrentUser'}); +$queues->UnLimit(); + +if ($FindDisabledQueues) { + $queues->{'find_disabled_rows'} = 1; +} + + +<%ARGS> +$FindDisabledQueues => 0 + -- cgit v1.2.1