5eafb4024a4a6b8f9d0dd60a2c51e0babce6cf91
[kivitendo-erp.git] / templates / webpages / projects / search.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3  <form method="post" action="projects.pl" name="Form">
4
5   <div class="listtop">[% title %]</div>
6
7   <p>
8    <table>
9     <tr>
10      <th align="right">[% 'Number' | $T8 %]</th>
11      <td><input name="filter.projectnumber" id="projectnumber" size="20"></td>
12     </tr>
13
14     <tr>
15      <th align="right">[% 'Description' | $T8 %]</th>
16      <td><input name="filter.description" size="60"></td>
17     </tr>
18
19     <tr>
20      <th align="right">[% 'Customer' | $T8 %]</th>
21      <td><input name="filter.customer" size="60"></td>
22     </tr>
23
24     <tr>
25      <th align="right">[% 'Type' | $T8 %]</th>
26      <td><input name="filter.type" size="60"></td>
27     </tr>
28
29     [% CUSTOM_VARIABLES_FILTER_CODE %]
30
31     <tr>
32      <th>[% 'Include in Report' | $T8 %]</th>
33      <td>
34       <table>
35        <tr>
36         <td>
37          <input type="radio" name="filter.active" id="active_active" value="active" checked>
38          <label for="active_active">[% 'Active' | $T8 %]</label>
39         </td>
40         <td>
41          <input type="radio" name="filter.active" id="active_inactive" value="inactive">
42          <label for="active_inactive">[% 'Inactive' | $T8 %]</label>
43         </td>
44         <td>
45          <input type="radio" name="filter.active" id="active_both" value="both">
46          <label for="active_both">[% 'Both' | $T8 %]</label>
47         </td>
48        </tr>
49
50        <tr>
51         <td>
52          <input type="radio" name="filter.valid" id="valid_valid" value="valid" checked>
53          <label for="valid_valid">[% 'Valid' | $T8 %]</label>
54         </td>
55         <td>
56          <input type="radio" name="filter.valid" id="valid_invalid" value="invalid">
57          <label for="valid_invalid">[% 'Invalid' | $T8 %]</label>
58         </td>
59         <td>
60          <input type="radio" name="filter.valid" id="valid_both" value="both">
61          <label for="valid_both">[% 'Both' | $T8 %]</label>
62         </td>
63        </tr>
64
65        <tr>
66         <td>
67          <input type="radio" name="filter.status" id="status_all" value="all" checked>
68          <label for="status_all">[% 'All' | $T8 %]</label>
69         </td>
70         <td>
71          <input type="radio" name="filter.status" id="status_orphaned" value="orphaned">
72          <label for="status_orphaned">[% 'Orphaned' | $T8 %]</label>
73         </td>
74        </tr>
75
76        [% CUSTOM_VARIABLES_INCLUSION_CODE %]
77
78       </table>
79      </td>
80     </tr>
81    </table>
82   </p>
83
84   <hr size="3" noshade>
85
86   <input type="hidden" name="nextsub" value="project_report">
87
88   <p>
89    <input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">
90   </p>
91  </form>