I have tried all of them but it is not.
Can I be trying in the wrong place?
<t t-if="counter == 16 and line['price_subtotal']">
<tr class="text-right" style="border:0;border-top:0;">
<td colspan="6">
<strong>Ara Toplam:</strong>
<span>
<t t-esc="subtotal" t-options="{'widget':'monetary', 'display_currency':o.currency_id}"/>
</span>
</td>
</tr>
<t t-set="counter" t-value="0" />
<div style="page-break-after:auto;"><span style="display:none"></span></div>
</t>
<t t-if="line_index == (len(o.invoice_line_ids)-1)">
<tr class="text-right" style="border:0;border-top:0;">
<td colspan="6">
<strong>Toplam:</strong>
<t t-set="total" t-value="o.amount_total" />
<span>
<t t-esc="total" t-options="{'widget':'monetary', 'display_currency':o.currency_id}"/>
</span>
</td>
</tr>
</t>