summaryrefslogtreecommitdiff
path: root/httemplate/view/svc_acct/change_svc.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/view/svc_acct/change_svc.html')
-rw-r--r--httemplate/view/svc_acct/change_svc.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/httemplate/view/svc_acct/change_svc.html b/httemplate/view/svc_acct/change_svc.html
deleted file mode 100644
index 33d44a713..000000000
--- a/httemplate/view/svc_acct/change_svc.html
+++ /dev/null
@@ -1,21 +0,0 @@
-% if ( @part_svc || $opt{'showall'} ) {
-
-| <SELECT NAME="svcpart" onChange="enable_change()">
- <OPTION VALUE="">Change service</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="Change" disabled>
-
-% }
-
-<%init>
-
-my %opt = @_;
-my @part_svc = @{ $opt{'part_svc'} };
-
-</%init>