This commit was generated by cvs2svn to compensate for changes in r8690,
[freeside.git] / rt / share / html / Admin / Groups / index.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %# 
5 %# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
6 %#                                          <jesse@bestpractical.com>
7 %# 
8 %# (Except where explicitly superseded by other copyright notices)
9 %# 
10 %# 
11 %# LICENSE:
12 %# 
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %# 
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %# 
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %# 
29 %# 
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %# 
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %# 
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %# 
47 %# END BPS TAGGED BLOCK }}}
48 <& /Admin/Elements/Header, Title => $title &>
49 <& /Admin/Elements/GroupTabs, current_tab => 'Admin/Groups/',
50     current_subtab => 'Admin/Groups/', 
51     Title => $title &>
52 <% $caption %>:<br />
53
54 % unless ( $Groups->Count ) {
55 <em><&|/l&>No groups matching search criteria found.</&></em>
56 % } else {
57
58 <& /Elements/CollectionList,
59     OrderBy => 'Name',
60     Order => 'ASC',
61     Rows  => 100,
62     %ARGS,
63     Format => $Format,
64     Collection => $Groups,
65     AllowSorting => 1,
66     PassArguments => [qw(Format Rows Page Order OrderBy GroupString GroupOp GroupField FindDisabledGroups)],
67 &>
68
69 % my $ids = join ',', map $_->id, @{ $Groups->ItemsArrayRef };
70 % if ( $ids ) {
71 <div align="right"><em>
72 (<a href="<% RT->Config->Get('WebPath') %>/Download/Tabular/Group/<% $ids %>/Groups.tsv">
73 <&|/l&>Download as a tab-delimited file</&>
74 </a>)</em></div>
75 % }
76
77 <br /><br />
78 % }
79
80 <form method="post" action="<% RT->Config->Get('WebPath') %>/Admin/Groups/index.html">
81 <input type="checkbox" class="checkbox" name="FindDisabledGroups" value="1" <% $FindDisabledGroups? 'checked="checked"': '' |n %> /> <&|/l&>Include disabled groups in listing.</&><br />
82 <&|/l&>Find groups whose</&> <& /Elements/SelectGroups &><br />
83 <div align="right"><input type="submit" class="button" value="<&|/l&>Go!</&>" /></div> 
84 </form>
85 <%INIT>
86 my $Groups = RT::Groups->new($session{'CurrentUser'});
87 $Groups->LimitToUserDefinedGroups();
88 my $title = loc('Select a group');
89 my $caption;
90
91 if ($FindDisabledGroups) {
92     $Groups->FindAllRows();
93 }
94
95 if (length $GroupString) {
96     $caption = loc("Groups matching search criteria");
97     if ($GroupField =~ /^CustomField-(\d+)/) {
98         $Groups->LimitCustomField(
99             CUSTOMFIELD => $1,
100             OPERATOR => $GroupOp,
101             VALUE => $GroupString,
102         ); 
103     }
104     else {
105         $Groups->Limit(
106             FIELD => $GroupField,
107             OPERATOR => $GroupOp,
108             VALUE => $GroupString,
109         ); 
110     }
111 }
112 else {
113     $caption = loc("User-defined groups");
114 }
115
116
117 $Format ||= q{'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__id__</a>/TITLE:#'}
118     .q{,'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
119     .q{,'__Description__'};
120
121 </%INIT>
122 <%ARGS>
123 $Format => undef,
124
125 $GroupString => '' unless defined $GroupString
126 $GroupOp => '='
127 $GroupField => 'Name'
128 $FindDisabledGroups => 0
129 </%ARGS>