summaryrefslogtreecommitdiff
path: root/rt/webrt/Admin/Elements/ListGlobalKeywordSelects
blob: b24d6898996acde79a02e7f6ee22f60199f5df1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
% while (my $KeywordSelect = $KeywordSelects->Next()) {

<%$KeywordSelect->Name %>:
<% $KeywordSelect->Single ? 'Single' : 'Multiple' %>
children of
<% $KeywordSelect->KeywordObj->Path %>
% if ($KeywordSelect->Depth) {
	  up to <%$KeywordSelect->Depth%> levels deep
% }
<BR>
%} 
<%INIT>
my $KeywordSelects = RT::KeywordSelects->new($session{'CurrentUser'});
$KeywordSelects->LimitToGlobals();
</%INIT>