import rt 3.0.12
[freeside.git] / rt / html / Admin / Groups / index.html
1 %# BEGIN LICENSE BLOCK
2 %# 
3 %# Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4 %# 
5 %# (Except where explictly superceded by other copyright notices)
6 %# 
7 %# This work is made available to you under the terms of Version 2 of
8 %# the GNU General Public License. A copy of that license should have
9 %# been provided with this software, but in any event can be snarfed
10 %# from www.gnu.org.
11 %# 
12 %# This work is distributed in the hope that it will be useful, but
13 %# WITHOUT ANY WARRANTY; without even the implied warranty of
14 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 %# General Public License for more details.
16 %# 
17 %# Unless otherwise specified, all modifications, corrections or
18 %# extensions to this work which alter its source code become the
19 %# property of Best Practical Solutions, LLC when submitted for
20 %# inclusion in the work.
21 %# 
22 %# 
23 %# END LICENSE BLOCK
24 <& /Admin/Elements/Header, Title => $title &>
25 <& /Admin/Elements/GroupTabs, current_tab => 'Admin/Groups/',
26     current_subtab => 'Admin/Groups/', 
27     Title => $title &>
28
29
30 <UL>
31 %while ( my $Group = $Groups->Next) {
32 <LI><A HREF="Modify.html?id=<%$Group->id%>"><%$Group->Name || loc('(empty)')%></a><BR>
33 %}
34 </UL>
35 <br><br>
36 <FORM METHOD=POST ACTION="<% $RT::WebPath %>/Admin/Groups/index.html">
37 <input type="checkbox" name="FindDisabledGroups"> <&|/l&>Include disabled groups in listing.</&>
38 <BR>
39 <div align=right><input type=submit value="<&|/l&>Go!</&>"></div> 
40 </FORM>
41
42 <%INIT>
43 my $Groups = RT::Groups->new($session{'CurrentUser'});
44
45 if ($FindDisabledGroups) {
46   $Groups->{'find_disabled_rows'} = 1;
47 }
48
49 $Groups->LimitToUserDefinedGroups();
50 my $title = loc('Select a group');
51
52 </%INIT>
53 <%ARGS>
54 $FindDisabledGroups => 0
55 </%ARGS>