{% extends "oscar/customer/emails/base.html" %} {% load currency_filters i18n %} {% load promotion_tags %} {% block tbody %}

{% trans 'Hello,' %}

{% blocktrans with order_number=order.number %}We have a message on the order {{ order_number }}.{% endblocktrans %}

{% blocktrans with order_number=order.number %}Click the link to go to order page.{% endblocktrans %}

{% blocktrans with order_number=order.number %}The content of the message is below:{% endblocktrans %}

{{ note.message}}

{% trans 'Go to order infomation.' %} {% endblock %}