This commit was generated by cvs2svn to compensate for changes in r6252,
[freeside.git] / httemplate / edit / part_pkg_taxclass.html
1 <% include('/elements/header.html', "$action taxclass") %>
2
3 <% include('/elements/error.html') %>
4
5 <FORM ACTION="<% $p1 %>process/part_pkg_taxclass.html" METHOD=POST>
6
7 <INPUT TYPE="hidden" NAME="taxclassnum" VALUE="">
8
9 Tax class <INPUT TYPE="text" NAME="taxclass" VALUE="<% $taxclass |h %>">
10
11 <BR><BR>
12 <INPUT TYPE="submit" VALUE="<% $action %> taxclass">
13
14 </FORM>
15
16 <% include('/elements/footer.html') %>
17
18 <%init>
19
20 die "access denied"
21   unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
22
23 my $taxclass = '';
24 if ( $cgi->param('error') ) {
25   $taxclass = $cgi->param('taxclass');
26 }
27
28 my $action = 'Add';
29
30 my $p1 = popurl(1);
31
32 </%init>