import of rt 3.0.4
[freeside.git] / rt / html / Admin / Users / 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 => loc('Select a user') &>
25 <& /Admin/Elements/UserTabs, current_tab => 'Admin/Users/', 
26     current_subtab => 'Admin/Users/',
27     Title => loc('Select a user') &>
28
29
30
31
32 <%$caption%>:<BR>
33 <UL>
34 %if ($users->Count == 0) {
35 <LI> <i><&|/l&>No users matching search criteria found.</&></i>
36 % }
37 %while ( $user = $users->Next) {
38 <LI><A HREF="Modify.html?id=<%$user->id%>"><%$user->Name || loc('(no name listed)')%></a></LI>
39 %}
40
41 </UL>
42 <br><br>
43 <FORM METHOD=POST ACTION="<% $RT::WebPath %>/Admin/Users/">
44
45 <&|/l&>Find people whose</&> <& /Elements/SelectUsers &><BR>
46 <input type="checkbox" name="FindDisabledUsers"> <&|/l&>Include disabled users in search.</&>
47 <BR>
48 <div align=right><input type=submit value="<&|/l&>Go!</&>"></div> 
49 </FORM>
50
51 <%INIT>
52 my ($user, $caption);
53 my $users = new RT::Users($session{'CurrentUser'});
54
55 if ($FindDisabledUsers) {
56         $users->{'find_disabled_rows'} = 1;
57 }
58
59 unless (defined $UserString) {
60     $users->LimitToPrivileged();
61     $caption = loc("Privileged users");
62 }
63 else {
64     $caption = loc("Users matching search criteria");
65
66   if ($UserString) {
67         $users->Limit( FIELD => $UserField,
68                         OPERATOR => $UserOp,
69                        VALUE => $UserString); 
70
71 }
72 }
73 </%INIT>
74 <%ARGS>
75 $UserString => undef
76 $UserOp => '='
77 $UserField => 'Name'
78 $IdLike => undef
79 $EmailLike => undef
80 $FindDisabledUsers => 0
81 </%ARGS>