blob: cb0ab894a336c5edd4d8a3de3282a1256be2c93b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
% if ( $export_info->{no_machine} ) {
<INPUT TYPE="hidden" NAME="machine" VALUE="">
<INPUT TYPE="hidden" NAME="svc_machine" VALUE="N">
% } else {
% # clone this from edit/part_export.cgi if this case ever gets used
% }
<INPUT TYPE="hidden" NAME="exporttype" VALUE="<%$layer |h%>">
<% ntable('cccccc', 2) %>
<TR>
<TD ALIGN="right" ><% emt('Description') %></TD>
<TD BGCOLOR="#ffffff" WIDTH="600"><% $notes %></TD>
</TR>
<%init>
my %opt = @_;
my $layer = $opt{layer};
my $part_export = $opt{part_export};
my $export_info = $opt{export_info};
my $notes = $opt{notes} || $export_info->{notes};
</%init>
|