Pflichtenheft: bei Filter anzeigen Fokus auf Kundennamen setzen
[kivitendo-erp.git] / templates / webpages / requirement_spec / _filter.html
1 [%- USE HTML %][%- USE L %][%- USE LxERP %]
2
3 <div class="filter_toggle">
4  <a href="#" onClick="$('.filter_toggle').toggle(); $('#filter_customer_name_substr_ilike').focus();">[% LxERP.t8("Show Filter") %]</a>
5 </div>
6
7 <div class="filter_toggle" style="display:none">
8  <a href="#" onClick="javascript:$('.filter_toggle').toggle()">[% LxERP.t8("Hide Filter") %]</a>
9
10  <form method="post" action="controller.pl">
11   [%- L.hidden_tag("is_template", is_template) %]
12
13   <p>
14    <table class="rs_input_field">
15     <tr>
16      <th align="right">[% LxERP.t8("Title") %]</th>
17      <td>[% L.input_tag('filter.title:substr::ilike', filter.title_substr__ilike) %]</td>
18     </tr>
19
20 [%- UNLESS is_template %]
21     <tr>
22      <th align="right">[% LxERP.t8("Customer") %]</th>
23      <td>[% L.input_tag('filter.customer.name:substr::ilike', filter.customer.name_substr__ilike) %]</td>
24     </tr>
25
26     <tr>
27      <th align="right">[% LxERP.t8("Customer Number") %]</th>
28      <td>[% L.input_tag('filter.customer.customernumber:substr::ilike', filter.customer.customernumber_substr__ilike) %]</td>
29     </tr>
30
31     <tr>
32      <th align="right">[% LxERP.t8("Requirement Spec Type") %]</th>
33      <td>[% L.select_tag('filter.type_id', SELF.types, default=filter.type_id, title_key="description", with_empty=1) %]</td>
34     </tr>
35
36     <tr>
37      <th align="right">[% LxERP.t8("Requirement Spec Status") %]</th>
38      <td>[% L.select_tag('filter.status_id', SELF.statuses, default=filter.status_id, title_key="description", with_empty=1) %]</td>
39     </tr>
40
41     <tr>
42      <th align="right">[% LxERP.t8("Project") %]</th>
43      <td>[% L.select_tag('filter.project_id', SELF.projects, default=filter.project_id, title_key="full_description", with_empty=1) %]</td>
44     </tr>
45 [%- END %]
46    </table>
47   </p>
48
49   [% L.hidden_tag("action", "RequirementSpec/list") %]
50
51   <p>[% L.submit_tag("dummy", LxERP.t8("Continue")) %]</p>
52  </form>
53 </div>