6 [%- INCLUDE 'common/flash.html' %]
8 <form method="post" action="controller.pl">
10 <div class="listtop">[% 'Search projects' | $T8 %]</div>
15 <th align="right">[% 'Number' | $T8 %]</th>
16 <td>[% L.input_tag('filter.projectnumber:substr::ilike', filter.projectnumber_substr__ilike, size=60) %]</td>
20 <th align="right">[% 'Description' | $T8 %]</th>
21 <td>[% L.input_tag('filter.description:substr::ilike', filter.description_substr__ilike, size=60, class='initial_focus') %]</td>
25 <th align="right">[% 'Customer' | $T8 %]</th>
26 <td>[% L.input_tag('filter.customer.name:substr::ilike', filter.customer.name_substr__ilike, size=60) %]</td>
30 <th align="right">[% 'Type' | $T8 %]</th>
31 <td>[% L.input_tag('filter.type:substr::ilike', filter.type_substr__ilike, size=20) %]</td>
34 [% CUSTOM_VARIABLES_FILTER_CODE %]
37 <th>[% 'Include in Report' | $T8 %]</th>
41 <td>[% L.select_tag('filter.active', [ [ 'active', LxERP.t8('Active') ], [ 'inactive', LxERP.t8('Inactive') ], [ 'both', LxERP.t8('Both') ] ], default=filter.active, style="width: 200px") %]</td>
45 <td>[% L.select_tag('filter.valid', [ [ 'valid', LxERP.t8('Valid') ], [ 'invalid', LxERP.t8('Invalid') ], [ 'both', LxERP.t8('Both') ] ], default=filter.valid, style="width: 200px") %]</td>
49 <td>[% L.select_tag('filter.status', [ [ 'all', LxERP.t8('All') ], [ 'orphaned', LxERP.t8('Orphaned') ] ], default=filter.status, style="width: 200px") %]</td>
52 [% CUSTOM_VARIABLES_INCLUSION_CODE %]
62 [% L.hidden_tag('action', 'Project/list') %]
64 <p>[% L.submit_tag('dummy', LxERP.t8('Continue')) %]</p>