summaryrefslogtreecommitdiff
path: root/rt/webrt/Admin/Elements/SelectModifyGroup
blob: 45d437f41da1f93a048b5ae46a820f066b20dc91 (plain)
1
2
3
4
5
6
7
8
9
10
%while ( $Group = $Groups->Next) {
<A HREF="Modify.html?id=<%$Group->id%>"><%$Group->id%>: <%$Group->Name%></a><BR>
%}
<%INIT>
my ($Group);
my $Groups = new RT::Groups($session{'CurrentUser'});
$Groups->UnLimit;
</%INIT>
<%ARGS>
</%ARGS>