Revision 7ac9b3ea
Von Bernd Bleßmann vor fast 2 Jahren hinzugefügt
templates/design40_webpages/dunning/status.html | ||
---|---|---|
8 | 8 |
|
9 | 9 |
[%- INCLUDE 'common/flash.html' -%] |
10 | 10 |
|
11 |
<table> |
|
12 |
<thead class="listheading"> |
|
13 |
<tr> |
|
14 |
<th>[% 'Dunning number' | $T8 %]</th> |
|
15 |
<th width="250px">[% 'Invoice Number' | $T8 %]</th> |
|
16 |
<th>[% 'Include original Invoices?' | $T8 %]</th> |
|
17 |
<th>[% 'eMail?' | $T8 %]</th> |
|
18 |
<th>[% 'Status' | $T8 %]</th> |
|
19 |
</tr> |
|
20 |
</thead> |
|
21 |
<tbody> |
|
22 |
[% FOREACH s = status -%] |
|
23 |
<tr class=[%- IF s.error %]"listrow_error"[% ELSE %]"listrow"[% END %]> |
|
24 |
<td>[% IF !s.error %][% P.link_tag('dn.pl?action=show_dunning&showold=1&dunning_id=' _ s.dunning_id, s.dunning_id) %][% END %]</td> |
|
25 |
<td>[% s.invnumbers.join(", ") %]</td> |
|
26 |
<td>[% s.print_original_invoice ? LxERP.t8('Yes') : LxERP.t8('No') %]</td> |
|
27 |
<td>[% s.send_email ? LxERP.t8('Yes') : LxERP.t8('No') %]</td> |
|
28 |
<td>[% s.error ? s.error : LxERP.t8('Ok') %]</td> |
|
29 |
</tr> |
|
30 |
[%- END %] |
|
31 |
</tbody> |
|
32 |
</table> |
|
11 |
<div class="wrapper"> |
|
12 |
<table class="tbl-list"> |
|
13 |
<thead> |
|
14 |
<tr> |
|
15 |
<th>[% 'Dunning number' | $T8 %]</th> |
|
16 |
<th>[% 'Invoice Number' | $T8 %]</th> |
|
17 |
<th>[% 'Include original Invoices?' | $T8 %]</th> |
|
18 |
<th>[% 'eMail?' | $T8 %]</th> |
|
19 |
<th>[% 'Status' | $T8 %]</th> |
|
20 |
</tr> |
|
21 |
</thead> |
|
22 |
<tbody> |
|
23 |
[% FOREACH s = status -%] |
|
24 |
<tr class=[%- IF s.error %]"listrow_error"[% ELSE %]"listrow"[% END %]> |
|
25 |
<td>[% IF !s.error %][% P.link_tag('dn.pl?action=show_dunning&showold=1&dunning_id=' _ s.dunning_id, s.dunning_id) %][% END %]</td> |
|
26 |
<td>[% s.invnumbers.join(", ") %]</td> |
|
27 |
<td>[% s.print_original_invoice ? LxERP.t8('Yes') : LxERP.t8('No') %]</td> |
|
28 |
<td>[% s.send_email ? LxERP.t8('Yes') : LxERP.t8('No') %]</td> |
|
29 |
<td>[% s.error ? s.error : LxERP.t8('Ok') %]</td> |
|
30 |
</tr> |
|
31 |
[%- END %] |
|
32 |
</tbody> |
|
33 |
</table> |
|
34 |
</div> |
|
33 | 35 |
|
34 | 36 |
[%- IF pdf_filename && pdf_content -%] |
35 | 37 |
<script type="text/javascript"> |
Auch abrufbar als: Unified diff
deisgn4.0: Mahnungen: Status-Bericht: HTML-Template angepasst