summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-part_pkg.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/tr-select-part_pkg.html')
-rw-r--r--httemplate/elements/tr-select-part_pkg.html29
1 files changed, 0 insertions, 29 deletions
diff --git a/httemplate/elements/tr-select-part_pkg.html b/httemplate/elements/tr-select-part_pkg.html
deleted file mode 100644
index b6d4d4d9e..000000000
--- a/httemplate/elements/tr-select-part_pkg.html
+++ /dev/null
@@ -1,29 +0,0 @@
-% if ( scalar(@{ $opt{'part_pkg'} }) == 0 ) {
-
- <INPUT TYPE="hidden" NAME="<% $opt{'field'} || 'pkgpart' %>" VALUE="">
-
-% } else {
-
- <TR>
- <TD ALIGN="right"><% $opt{'label'} || 'Package definition' %></TD>
- <TD>
- <% include( '/elements/select-table.html',
- 'table' => 'part_pkg',
- 'name_col' => 'pkg',
- 'multiple' => 1,
- #N/A 'empty_label' => '(none)',
- %opt,
- )
- %>
- </TD>
- </TR>
-
-% }
-
-<%init>
-
-my( %opt ) = @_;
-
-$opt{'part_pkg'} ||= [ qsearch( 'part_pkg', {} ) ]; # { disabled=>'' } )
-
-</%init>