<%! from django.utils.translation import ugettext as _ %> <%inherit file="../main.html" /> <%block name="bodyclass">register verification-process step-confirmation <%block name="pagetitle">${_("Receipt (Order")} ${order.id}) <%block name="content"> % if notification is not UNDEFINED:
${notification}
% endif

${_("Your Progress")}

  1. 0 ${_("Current Step: ")}${_("Intro")}
  2. 1 ${_("Take Photo")}
  3. 2 ${_("Take ID Photo")}
  4. 3 ${_("Review")}
  5. 4 ${_("Make Payment")}
  6. ${_("Current Step: ")}${_("Confirmation")}

${_("Congratulations! You are now verified on ")} ${_(settings.PLATFORM_NAME)}.

${_("You are now registered as a verified student! Your registration details are below.")}

  • ${_("You are registered for:")}

    % for item in order_items: % endfor
    ${_("A list of courses you have just registered for as a verified student")}
    ${_("Course")} ${_("Status")} ${_("Options")}
    ${item.line_desc} ${_("Starts: {start_date}").format(start_date=course_start_date_text)} %if course_has_started: ${_("Go to Course")} %else: %endif
    ${_("Go to your Dashboard")}
  • ${_("Verified Status")}

    ${_("We have received your identification details to verify your identity. If there is a problem with any of the items, we will contact you to resubmit. You can now register for any of the verified certificate courses this semester without having to re-verify.")}

    ${_("The professor will ask you to periodically submit a new photo to verify your work during the course (usually at exam times).")}

  • ${_("Payment Details")}

    ${_("Please print this page for your records; it serves as your receipt. You will also receive an email with the same information.")}

    % for item in order_items: % if item.status == "purchased": % elif item.status == "refunded": % endif % endfor
    ${_("Order No.")} ${_("Description")} ${_("Date")} ${_("Description")}
    ${order.id} ${item.line_desc} ${order.purchase_time.date().isoformat()} ${"{0:0.2f}".format(item.line_cost)} (${item.currency.upper()})${order.id} ${item.line_desc} ${order.purchase_time.date().isoformat()} ${"{0:0.2f}".format(item.line_cost)} (${item.currency.upper()})
    ${_("Total")} ${"{0:0.2f}".format(order.total_cost)} (${item.currency.upper()})
    % if any_refunds:

    Please Note:

    ## Translators: Please keep the "" and "" tags around your translation of the word "this" in your translation.

    ${_("Note: items with strikethough like this have been refunded.")}

    % endif

    ${_("Billed To")}: ${order.bill_to_first} ${order.bill_to_last} (${order.bill_to_city}, ${order.bill_to_state} ${order.bill_to_postalcode} ${order.bill_to_country.upper()})

  • <%doc>
  • ${_("Billing Information")}

    ${_("Billed To")} ${_("Billing Address")} ${_("Payment Method Type")} ${_("Payment Method Details")}
    ${order.bill_to_first} ${order.bill_to_last} ${order.bill_to_street1} ${order.bill_to_street2} ${order.bill_to_street2}, ${order.bill_to_state} ${order.bill_to_postalcode} ${order.bill_to_country.upper()} ${order.bill_to_cardtype} ${order.bill_to_ccnum}
    ${_("Total")} ${"{0:0.2f}".format(order.total_cost)} (${item.currency.upper()})