Created
April 30, 2015 12:26
-
-
Save stoll/f6f0c68a43fed754c505 to your computer and use it in GitHub Desktop.
Shopify: Refund Notification in HTML (Danish)
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
| {% if customer.name %} | |
| <p>Hej, {{ customer.name }}!</p> | |
| <p></p> | |
| {% endif %} | |
| <p>{{ shop_name }} har refunderet din ordre ({{ name }}) {% if amount > 0 %}til i alt {{ amount | money_with_currency }}{% endif %}{% if refund_line_items.size > 0 %} for:</p> | |
| <p> | |
| {% for line in refund_line_items %} | |
| {{ line.quantity }} x {{ line.line_item.title }}</p> | |
| {% endfor %} | |
| {% else %} | |
| .</p> | |
| {% endif %} | |
| <p></p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment