Created
January 6, 2022 14:21
-
-
Save Bilkiss/5b38c259cac3b218f09cc268a16b6671 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row g-0"> | |
<div class="col"> | |
<dl class="text-end"> | |
<dt>Subtotal: </dt> | |
<dd>Discount (5%): </dd> | |
<dd>VAT (15%): </dd> | |
<dt class="fs-5">Total: </dt> | |
</dl> | |
</div> | |
<div class="col-2"> | |
<dl class="text-end pe-5"> | |
<dt>{{displayProductData.subtotal | currency}}</dt> | |
<dd>{{displayProductData.discount | currency}}</dd> | |
<dd>{{displayProductData.vat | currency}}</dd> | |
<dt class="fs-5">{{displayProductData.total | currency}}</dt> | |
</dl> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment