This commit was generated by cvs2svn to compensate for changes in r2523,
[freeside.git] / rt / webrt / Admin / Elements / SelectScripAction
1 <SELECT NAME=<%$Name%>>
2 <OPTION VALUE="" 
3 <% $Default eq undef && 'SELECTED' %>
4 >-</OPTION>
5 %while  (my $ScripAction = $ScripActions->Next) {
6 <OPTION VALUE=<%$ScripAction->Id%>
7 <% $ScripAction->Id == $Default && 'SELECTED' %>
8 ><%$ScripAction->Name%>
9 </OPTION>
10 %}
11 </SELECT>
12
13 <%INIT>
14 my $ScripActions = RT::ScripActions->new($session{'CurrentUser'});
15 $ScripActions->UnLimit;
16
17
18
19 </%INIT>
20 <%ARGS>
21
22 $Default => undef
23 $Name => 'ScripAction'
24
25 </%ARGS>