19 lines
1.0 KiB
XML
19 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<templates xml:space="preserve">
|
|
<t t-name="bank_statement_reconciliation.BankStatementTotalWidget">
|
|
<div class="o_bank_statement_total_widget d-flex align-items-center gap-3 px-3 py-2 bg-light border rounded">
|
|
<div class="d-flex align-items-center gap-2">
|
|
<i class="fa fa-check-square-o text-primary" style="font-size: 1.2em;"/>
|
|
<span class="fw-bold">Selected Lines:</span>
|
|
<span class="badge bg-primary" t-esc="state.selectedCount"/>
|
|
</div>
|
|
<div class="vr"/>
|
|
<div class="d-flex align-items-center gap-2">
|
|
<i class="fa fa-calculator text-info" style="font-size: 1.2em;"/>
|
|
<span class="fw-bold">Total Amount:</span>
|
|
<span t-attf-class="badge {{displayClass}} fs-6 px-3" t-esc="formattedTotal"/>
|
|
<span t-if="state.currency" class="text-muted small" t-esc="state.currency[1]"/>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</templates> |