diff options
| author | ivan <ivan> | 2004-11-11 12:13:50 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2004-11-11 12:13:50 +0000 |
| commit | c582e92888b4a5553e1b4e5214cf35217e4a0cf0 (patch) | |
| tree | 3fe7cd7bf22bd356b478f0de0dd8f0b140fcee23 /rt/html/Admin/Groups/index.html | |
| parent | 289340780927b5bac2c7604d7317c3063c6dd8cc (diff) | |
import rt 3.0.12
Diffstat (limited to 'rt/html/Admin/Groups/index.html')
| -rw-r--r-- | rt/html/Admin/Groups/index.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rt/html/Admin/Groups/index.html b/rt/html/Admin/Groups/index.html index 57c86c90e..f3ae2305a 100644 --- a/rt/html/Admin/Groups/index.html +++ b/rt/html/Admin/Groups/index.html @@ -32,12 +32,24 @@ <LI><A HREF="Modify.html?id=<%$Group->id%>"><%$Group->Name || loc('(empty)')%></a><BR> %} </UL> +<br><br> +<FORM METHOD=POST ACTION="<% $RT::WebPath %>/Admin/Groups/index.html"> +<input type="checkbox" name="FindDisabledGroups"> <&|/l&>Include disabled groups in listing.</&> +<BR> +<div align=right><input type=submit value="<&|/l&>Go!</&>"></div> +</FORM> <%INIT> my $Groups = RT::Groups->new($session{'CurrentUser'}); + +if ($FindDisabledGroups) { + $Groups->{'find_disabled_rows'} = 1; +} + $Groups->LimitToUserDefinedGroups(); my $title = loc('Select a group'); </%INIT> <%ARGS> +$FindDisabledGroups => 0 </%ARGS> |
