Revision db1d60aa
Von Moritz Bunkus vor fast 8 Jahren hinzugefügt
templates/webpages/dunning/search.html | ||
---|---|---|
1 | 1 |
[%- USE T8 %] |
2 | 2 |
[%- USE HTML %] |
3 |
[%- USE L %] |
|
3 |
[%- USE L %][%- USE P -%]
|
|
4 | 4 |
<h1>[% title %]</h1> |
5 | 5 |
|
6 | 6 |
[% PROCESS 'common/flash.html' %] |
... | ... | |
13 | 13 |
<table> |
14 | 14 |
<tr> |
15 | 15 |
<th align="right">[% 'Customer' | $T8 %]</th> |
16 |
<td colspan="3"> |
|
17 |
[% IF SHOW_CUSTOMER_DDBOX %] |
|
18 |
<select id='customer' name="customer_id" class="initial_focus"> |
|
19 |
<option value=""></option> |
|
20 |
[% FOREACH row = ALL_CUSTOMERS %]<option value="[% HTML.escape(row.id) %]">[% HTML.escape(row.name) %]</option> |
|
21 |
[% END %] |
|
22 |
</select> |
|
23 |
[% ELSE %] |
|
24 |
<input id='customer' name="customer" size="35" class="initial_focus"> |
|
25 |
[% END %] |
|
26 |
</td> |
|
16 |
<td colspan="3">[% P.input_tag("customer", "", size="35", class="initial_focus") %]</td> |
|
27 | 17 |
</tr> |
28 | 18 |
|
29 | 19 |
[% IF SHOW_DUNNING_LEVELS %] |
... | ... | |
39 | 29 |
</tr> |
40 | 30 |
[% END %] |
41 | 31 |
|
42 |
[% IF SHOW_DEPARTMENT_DDBOX %]
|
|
32 |
[% IF ALL_DEPARTMENTS.as_list.size %]
|
|
43 | 33 |
<tr> |
44 | 34 |
<th align="right" nowrap>[% 'Department' | $T8 %]</th> |
45 | 35 |
<td colspan="3"> |
Auch abrufbar als: Unified diff
Mahnungssuche: Kundensuche immer nur via Eingabefeld