stray closing /TABLE in the no-ticket case
[freeside.git] / httemplate / misc / schedule-appointment.html
1 <& /elements/header-popup.html &>
2 <h1>Scheduling appointment...</h1>
3 <SCRIPT TYPE="text/javascript">
4   window.top.location.href = '<% $url %>';
5 </SCRIPT>
6 <& /elements/footer-popup.html &>
7 <%init>
8
9 my @username = map encode_entities($_), $cgi->param('username');
10 my $LengthMin = encode_entities( $cgi->param('LengthMin') );
11 my $custnum = encode_entities( $cgi->param('custnum') );
12
13 my $query = join('&', map "username=$_", @username).
14             "&LengthMin=$LengthMin".
15             "&custnum=$custnum".
16             "&RedirectToBasics=1";
17             #XXX '&pkgnum=$pkgnum";need to be for specific package/location, not just for a customer... default to active(/ordered) package in a pkg_class w/ticketing_queueid, otherwise, a popup?  we're getting complicated like form-creat_ticket.html
18
19 my $url = $p. 'rt/Search/Schedule.html?'. $query;
20
21 </%init>