diff options
Diffstat (limited to 'httemplate/elements/tr-select-part_svc.html')
-rw-r--r-- | httemplate/elements/tr-select-part_svc.html | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/httemplate/elements/tr-select-part_svc.html b/httemplate/elements/tr-select-part_svc.html deleted file mode 100644 index af5148749..000000000 --- a/httemplate/elements/tr-select-part_svc.html +++ /dev/null @@ -1,26 +0,0 @@ -% if ( scalar(@{ $opt{'part_svc'} }) == 0 ) { - - <INPUT TYPE="hidden" NAME="<% $opt{'field'} || 'svcpart' %>" VALUE=""> - -% } else { - - <TR> - <TD ALIGN="right"><% $opt{'label'} || 'Package definition' %></TD> - <TD> - <% include( '/elements/select-part_svc.html', - 'multiple' => 1, - %opt, - ) - %> - </TD> - </TR> - -% } - -<%init> - -my( %opt ) = @_; - -$opt{'part_svc'} ||= [ qsearch( 'part_svc', {} ) ]; # { disabled=>'' } ) - -</%init> |