Created
January 18, 2017 23:57
-
-
Save seedcms/a2226b65937dafce10620343b80ad07c to your computer and use it in GitHub Desktop.
Updated cart summary
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
<tfoot class="summary"> | |
<tr> | |
<td colspan="2">Subtotal</td> | |
<td>{{ cart.original_total_price | money }}</td> | |
</tr> | |
<tr> | |
<td colspan="2">Discount Savings</td> | |
<td>{{ cart.total_discount | money }}</td> | |
</tr> | |
<tr> | |
<td colspan="2">Total</td> | |
<td>{{ cart.total_price | money }}</td> | |
</tr> | |
</tfoot> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment