Created
January 18, 2017 23:54
-
-
Save seedcms/1ae8f48d6321f776388891ccf2e90341 to your computer and use it in GitHub Desktop.
Cart table after the updated line items
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
<tbody class="line-items"> | |
{% for item in cart.items %} | |
<tr> | |
<td>{{ item.product.title }}</td> | |
<td>{{ item.quantity }}</td> | |
<td> | |
{{ item.line_price }} | |
{% if item.total_discount > 0 %} | |
<s>{{ item.original_line_price }}</s> | |
( {{ item.message }} ) | |
{% endif %} | |
</td> | |
</tr> | |
{% endfor %} | |
</tbody> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment