summaryrefslogtreecommitdiff
path: root/httemplate/view/svc_acct/change_svc.html
blob: ed4aadd5ff5240799d0f7102086d127b51c24f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
% if ( @part_svc || $opt{'showall'} ) {

| <SELECT NAME="svcpart" onChange="enable_change()">
    <OPTION VALUE=""><% mt('Change service') |h %></OPTION>
    <OPTION VALUE="">--------------</OPTION>
% foreach my $opt_part_svc ( @part_svc ) { 

      <OPTION VALUE="<% $opt_part_svc->svcpart %>"><% $opt_part_svc->svc %></OPTION>
% } 

  </SELECT>
  <INPUT NAME="submit" TYPE="submit" VALUE="<% mt('Change') |h %>" disabled>

% } 

<%init>

my %opt = @_;
my @part_svc = @{ $opt{'part_svc'} };

</%init>