Commit b65d245b by Douglas Hall Committed by GitHub

Merge pull request #13979 from edx/hasnain-naveed/WL-633

WL-633 | refactor pay_and_verify.html template.
parents 9fc01382 3c29ecbf
<%!
from django.utils.translation import ugettext as _
from openedx.core.djangolib.markup import HTML, Text
%>
<%namespace name='static' file='../static_content.html'/>
<li class="help-item help-item-questions">
<h3 class="title">${_("Have questions?")}</h3>
<div class="copy">
<p>${Text(_("Please read {a_start}our FAQs to view common questions about our certificates{a_end}.")).format(
a_start=HTML('<a rel="external" href="{}">').format(marketing_link('WHAT_IS_VERIFIED_CERT')),
a_end=HTML('</a>'))}
</p>
</div>
</li>
...@@ -100,14 +100,7 @@ from lms.djangoapps.verify_student.views import PayAndVerifyView ...@@ -100,14 +100,7 @@ from lms.djangoapps.verify_student.views import PayAndVerifyView
<div class="wrapper-content-supplementary"> <div class="wrapper-content-supplementary">
<aside class="content-supplementary"> <aside class="content-supplementary">
<ul class="list-help"> <ul class="list-help">
<li class="help-item help-item-questions"> <%include file="${static.get_template_path('_verification_help.html')}" />
<h3 class="title">${_("Have questions?")}</h3>
<div class="copy">
<p>${Text(_("Please read {a_start}our FAQs to view common questions about our certificates{a_end}.")).format(
a_start=HTML('<a rel="external" href="{}">').format(marketing_link('WHAT_IS_VERIFIED_CERT')),
a_end=HTML('</a>'))}</p>
</div>
</li>
% if PayAndVerifyView.WEBCAM_REQ in requirements: % if PayAndVerifyView.WEBCAM_REQ in requirements:
<li class="help-item help-item-technical"> <li class="help-item help-item-technical">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment