blob: 16d2a6b766143779be260e6ac096c31d8200ad55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<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>
|