<%! from django.utils.translation import ugettext as _ %>

${_("Thank you for your order! Payment was successful, and you should be able to see the results on your dashboard.")}

${_("Your order number is: {order_number}").format(order_number=order.id)}

${_("Items in your order:")}

${_("Quantity - Description - Price")}
%for order_item in order_items:
    ${order_item.qty} - ${order_item.line_desc} - $(order_item.line_cost}
%endfor
${_("Total: {total_cost}").format(total_cost=order.total_cost)}

${_("If you have any issues, please contact us at {billing_email}").format(billing_email=settings.PAYMENT_SUPPORT_EMAIL)}
