removing test code from dev.py
This commit is contained in:
@@ -28,7 +28,6 @@ MITX_FEATURES['ENABLE_MANUAL_GIT_RELOAD'] = True
|
|||||||
MITX_FEATURES['ENABLE_PSYCHOMETRICS'] = False # real-time psychometrics (eg item response theory analysis in instructor dashboard)
|
MITX_FEATURES['ENABLE_PSYCHOMETRICS'] = False # real-time psychometrics (eg item response theory analysis in instructor dashboard)
|
||||||
MITX_FEATURES['ENABLE_INSTRUCTOR_ANALYTICS'] = True
|
MITX_FEATURES['ENABLE_INSTRUCTOR_ANALYTICS'] = True
|
||||||
MITX_FEATURES['ENABLE_SERVICE_STATUS'] = True
|
MITX_FEATURES['ENABLE_SERVICE_STATUS'] = True
|
||||||
MITX_FEATURES['ENABLE_INSTRUCTOR_EMAIL'] = True
|
|
||||||
MITX_FEATURES['ENABLE_HINTER_INSTRUCTOR_VIEW'] = True
|
MITX_FEATURES['ENABLE_HINTER_INSTRUCTOR_VIEW'] = True
|
||||||
MITX_FEATURES['ENABLE_INSTRUCTOR_BETA_DASHBOARD'] = True
|
MITX_FEATURES['ENABLE_INSTRUCTOR_BETA_DASHBOARD'] = True
|
||||||
MITX_FEATURES['MULTIPLE_ENROLLMENT_ROLES'] = True
|
MITX_FEATURES['MULTIPLE_ENROLLMENT_ROLES'] = True
|
||||||
|
|||||||
@@ -3,8 +3,11 @@
|
|||||||
<%! from django.conf import settings %>
|
<%! from django.conf import settings %>
|
||||||
|
|
||||||
<%inherit file="../main.html" />
|
<%inherit file="../main.html" />
|
||||||
|
<%block name="bodyclass">register verification-process step-requirements</%block>
|
||||||
|
|
||||||
<%block name="title"><title>${_("Receipt for Order")} ${order.id}</title></%block>
|
<%block name="title"><title>${_("Register for [Course Name] | Receipt (Order")} ${order.id})</title></%block>
|
||||||
|
|
||||||
|
<%block name="content">
|
||||||
|
|
||||||
% if notification is not UNDEFINED:
|
% if notification is not UNDEFINED:
|
||||||
<section class="notification">
|
<section class="notification">
|
||||||
@@ -12,8 +15,63 @@
|
|||||||
</section>
|
</section>
|
||||||
% endif
|
% endif
|
||||||
|
|
||||||
<section class="container cart-list">
|
<div class="container">
|
||||||
<p><h1>${_(settings.PLATFORM_NAME + " (" + settings.SITE_NAME + ")" + " Electronic Receipt")}</h1></p>
|
<section class="wrapper cart-list">
|
||||||
|
|
||||||
|
|
||||||
|
<%include file="_verification_header.html" />
|
||||||
|
|
||||||
|
<div class="wrapper-progress">
|
||||||
|
<section class="progress">
|
||||||
|
<h3 class="sr title">${_("Your Progress")}</h3>
|
||||||
|
|
||||||
|
<ol class="progress-steps">
|
||||||
|
<li class="progress-step is-current" id="progress-step0">
|
||||||
|
<span class="wrapper-step-number"><span class="step-number">0</span></span>
|
||||||
|
<span class="step-name"><span class="sr">${_("Current Step: ")}</span>${_("Intro")}</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="progress-step" id="progress-step1">
|
||||||
|
<span class="wrapper-step-number"><span class="step-number">1</span></span>
|
||||||
|
<span class="step-name">${_("Take Photo")}</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="progress-step" id="progress-step2">
|
||||||
|
<span class="wrapper-step-number"><span class="step-number">2</span></span>
|
||||||
|
<span class="step-name">${_("Take ID Photo")}</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="progress-step" id="progress-step3">
|
||||||
|
<span class="wrapper-step-number"><span class="step-number">3</span></span>
|
||||||
|
<span class="step-name">${_("Review")}</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="progress-step" id="progress-step4">
|
||||||
|
<span class="wrapper-step-number"><span class="step-number">4</span></span>
|
||||||
|
<span class="step-name">${_("Make Payment")}</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="progress-step progress-step-icon" id="progress-step5">
|
||||||
|
<span class="wrapper-step-number"><span class="step-number">
|
||||||
|
<i class="icon-ok"></i>
|
||||||
|
</span></span>
|
||||||
|
<span class="step-name">${_("Confirmation")}</span>
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<span class="progress-sts">
|
||||||
|
<span class="progress-sts-value"></span>
|
||||||
|
</span>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="wrapper-content-main">
|
||||||
|
<article class="content-main">
|
||||||
|
<h3 class="title">${_(settings.PLATFORM_NAME + " (" + settings.SITE_NAME + ")" + " Electronic Receipt")}</h3>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<h2>${_("Order #")}${order.id}</h2>
|
<h2>${_("Order #")}${order.id}</h2>
|
||||||
<h2>${_("Date:")} ${order.purchase_time.date().isoformat()}</h2>
|
<h2>${_("Date:")} ${order.purchase_time.date().isoformat()}</h2>
|
||||||
<h2>${_("Items ordered:")}</h2>
|
<h2>${_("Items ordered:")}</h2>
|
||||||
@@ -57,4 +115,6 @@
|
|||||||
${order.bill_to_country.upper()}<br />
|
${order.bill_to_country.upper()}<br />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
</div>
|
||||||
|
</%block>
|
||||||
|
|||||||
Reference in New Issue
Block a user