Revision f022da86
Von Werner Hahn vor mehr als 5 Jahren hinzugefügt
templates/webpages/dunning/set_email.html | ||
---|---|---|
</tr>
|
||
<tr>
|
||
<th>[% 'Attach PDF:' | $T8 %]</th>
|
||
<td><input id="email_attachment" type="checkbox" name="email_attachment" value="1" [% if email_attachment %checked[% end %]></td>
|
||
<td><input id="email_attachment" type="checkbox" name="email_attachment" value="1" [% IF email_attachment %]checked[% END %]></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
templates/webpages/rp/print_options.html | ||
---|---|---|
</select>
|
||
</td>
|
||
[% IF MYCONFIG.printer && LXCONFIG.print_templates.latex && !is_email %]
|
||
<td>[% 'Copies' | $T8 %]<input type="text" name="copies" size="2" value="[%" copies %]></td>
|
||
<td>[% 'Copies' | $T8 %]<input type="text" name="copies" size="2" value="[% copies %]"></td>
|
||
[% END %]
|
||
</tr>
|
||
</tbody>
|
templates/webpages/sepa/bank_transfer_create.html | ||
---|---|---|
<td>[% LxERP.format_amount(bank_transfer.invoice_amount, -2) %]</td>
|
||
<td>[% LxERP.format_amount(bank_transfer.open_amount, -2) %]</td>
|
||
<td><input type="text" name="bank_transfers[].reference" value="[% HTML.escape(bank_transfer.reference.substr(0, 140)) %]" size="40" maxlength="140"></td>
|
||
<td><input type="text" id="[%" loop.count %] name="bank_transfers[].amount" value="[% LxERP.format_amount(bank_transfer.amount, -2) %]" style="text-align: right" size="12"></td>
|
||
<td><input type="text" id="[% loop.count %]" name="bank_transfers[].amount" value="[% LxERP.format_amount(bank_transfer.amount, -2) %]" style="text-align: right" size="12"></td>
|
||
<td>[% L.select_tag('bank_transfers[].payment_type', bank_transfer.payment_select_options, value_key => 'payment_type', title_key => 'display', id => 'payment_type_' _ loop.count, class => 'type_target' ) %]</td>
|
||
<td[% if bank_transfer.within_skonto_period %] style="background-color:LightGreen"[% end %]>
|
||
<td[% IF bank_transfer.within_skonto_period %] style="background-color:LightGreen"[% END %]>
|
||
[% IF bank_transfer.skonto_amount %]
|
||
[% LxERP.format_amount(bank_transfer.percent_skonto, 2) %] % = [% LxERP.format_amount(bank_transfer.skonto_amount, 2) %] € [% 'until' | $T8 %] [% bank_transfer.skonto_date %]
|
||
[% END %]
|
templates/webpages/wh/transfer_parts_selection.html | ||
---|---|---|
<td>
|
||
<select name="dst_warehouse_id_[% loop.count %]" onchange="warehouse_selected([% loop.count %], this.selectedIndex)">
|
||
[% FOREACH wh = WAREHOUSES %]
|
||
<option value="[% HTML.escape(wh.id) %]" [% if wh.selected %] selected[% end %]>[% HTML.escape(wh.description) %]</option>
|
||
<option value="[% HTML.escape(wh.id) %]" [% IF wh.selected %] selected[% END %]>[% HTML.escape(wh.description) %]</option>
|
||
[% END %]
|
||
</select>
|
||
</td>
|
Auch abrufbar als: Unified diff
Syntaxfehler in html-Templates behoben