<%! from django.utils.translation import ugettext as _ %> <%! from django.core.urlresolvers import reverse %> <%! from django.conf import settings %> <%inherit file="../main.html" /> <%block name="bodyclass">register verification-process step-confirmation <%block name="title">${_("Register for [Course Name] | 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. ${_("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
    ${item.line_desc} Starts: [date]
  • 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:

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

    % endif
    <%doc>

    ${_("Billing details:")}

    ${order.bill_to_cardtype} ${order.bill_to_ccnum}
    ${order.bill_to_first} ${order.bill_to_last}, ${order.bill_to_street1} ${order.bill_to_street2} ${order.bill_to_city}, ${order.bill_to_state} ${order.bill_to_postalcode} ${order.bill_to_country.upper()}