registration_codes_sale_invoice_attachment.txt 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
<%! from django.utils.translation import ugettext as _ %>

${_("INVOICE")}

———————————————————————————————————————————

${corp_address}

${_("Date: {date}").format(date=date)}
${_("Invoice No: {invoice_number}").format(invoice_number=invoice.id)}
${_("Terms: Due Immediately")}
${_("Due Date: {date}").format(date=date)}

${_("Bill to:")}
${invoice.company_name}
${invoice.address_line_1}
% if invoice.address_line_2:
${invoice.address_line_2}
% endif
% if invoice.address_line_3:
${invoice.address_line_3}
% endif
${invoice.city}, ${invoice.state}, ${invoice.zip}
${invoice.country}
${_("Customer Reference Number: {reference_number}").format(reference_number=invoice.customer_reference_number if invoice.customer_reference_number else "")}

                                        ${_("Balance Due: ${sale_price}").format(sale_price=sale_price)}

———————————————————————————————————————————

${_("Course: {course_name}").format(course_name=course.display_name)}

${_("Price:         ${course_price}  Quantity:      {quantity}  Sub-Total:    ${sub_total}  Discount:  ${discount}").format(course_price=course_price, quantity=quantity, sub_total=sub_total, discount=discount)}
${_("Total:      ${sale_price}").format(sale_price=sale_price)}

———————————————————————————————————————————

${_("Payment instructions")}

${payment_instructions}

${_("Failure to pay this invoice will result the invalidation of student enrollment that use these codes. All purchases are final. Please refer to the cancellation policy on {site_name} for more information.").format(site_name=site_name)}

${_("If you have payment questions, please contact {contact_email}").format(contact_email=contact_email)}