Unverified Commit ebe85737 by Carol Tong Committed by GitHub

Merge pull request #16483 from edx/carol/DOC-3822

DOC-3822 Make 2 steps more obvious in credit eligible email
parents 03c97b56 b58de56a
<%! from django.utils.translation import ugettext as _ %>
<%!
from django.utils.translation import ugettext as _
from openedx.core.djangolib.markup import HTML, Text
%>
<!DOCTYPE html>
<html>
......@@ -36,39 +39,51 @@
<p>
% if providers:
${_(u"Congratulations! You are eligible to receive course credit from {providers} for successfully completing your {platform_name} course! {link_start}Get your credit now.{link_end}").format(
link_start=u'<a href="{dashboard_url}">'.format(
${Text(_(u"Congratulations! You are now eligible to receive course credit from {providers} for successfully completing your {platform_name} course! {link_start}Purchase credit now.{link_end}")).format(
link_start=HTML(u'<a href="{dashboard_url}">').format(
dashboard_url=dashboard_link
),
link_end=u'</a>',
link_end=HTML(u'</a>'),
platform_name=settings.PLATFORM_NAME,
providers=providers
)}
% else:
${_(u"Congratulations! You are eligible to receive course credit for successfully completing your {platform_name} course! {link_start}Get your credit now.{link_end}").format(
link_start=u'<a href="{dashboard_url}">'.format(
${Text(_(u"Congratulations! You are now eligible to receive course credit for successfully completing your {platform_name} course! {link_start}Purchase credit now.{link_end}")).format(
link_start=HTML(u'<a href="{dashboard_url}">').format(
dashboard_url=dashboard_link
),
link_end=u'</a>',
link_end=HTML(u'</a>'),
platform_name=settings.PLATFORM_NAME
)}
% endif
</p>
<p>
${_(u"Course credit can help you get a jump start on your university degree, finish a degree already started, or fulfill requirements at a different academic institution.")}
${Text(_(u"Course credit can help you get a jump start on your university degree, finish a degree already started, or fulfill requirements at a different academic institution."))}
</p>
<p>
${_(u'To get course credit, simply go to your {link_start}{platform_name} dashboard{link_end} and click the <b>Get Credit</b> button. After you receive your credit, you will also have an official academic transcript at the institution that granted the credit.').format(
link_start=u'<a href="{dashboard_url}">'.format(
dashboard_url=dashboard_link
${Text(_(u'There are 2 steps to getting course credit.'))}
</p>
<ol>
<li>
${Text(_(u'Purchase credit by going to your {link_start}{platform_name} dashboard{link_end} and clicking the {bold_start}Get Credit{bold_end} button below the course title.')).format(
link_start=HTML(u'<a href="{dashboard_url}">').format(
dashboard_url=dashboard_link,
),
link_end=u'</a>',
link_end=HTML(u'</a>'),
bold_start=HTML('<b>'),
bold_end=HTML('</b>'),
platform_name=settings.PLATFORM_NAME
)}
</p>
</li>
<li>
${Text(_(u'When your payment is complete, return to the dashboard and click the {bold_start}Request Credit{bold_end} button under the course title to request an official academic transcript at the institution that granted the credit.')).format(
bold_start=HTML('<b>'),
bold_end=HTML('</b>'),
)}
</li>
</ol>
<p>
${_(u"We hope you enjoyed the course, and we hope to see you in future {platform_name} courses!").format(platform_name=settings.PLATFORM_NAME)}<br/>
${_(u"The {platform_name} Team").format(platform_name=settings.PLATFORM_NAME)}
......@@ -81,9 +96,9 @@
<tr>
<td class="cn-footer-content">
<p>
${_(u"{link_start}Click here for more information on credit at {platform_name}{link_end}.").format(
link_start=u'<a href="https://www.edx.org/gfa">',
link_end=u'</a>',
${Text(_(u"{link_start}Click here for more information on credit at {platform_name}{link_end}.")).format(
link_start=HTML(u'<a href="https://www.edx.org/gfa">'),
link_end=HTML(u'</a>'),
platform_name=settings.PLATFORM_NAME
)}
</p>
......
......@@ -6,9 +6,9 @@ ${_(u"Hi,")}
% endif
% if providers:
${_(u"Congratulations! You are eligible to receive course credit from {providers} for successfully completing your edX course!").format(providers=providers)}
${_(u"Congratulations! You are now eligible to receive course credit from {providers} for successfully completing your edX course!").format(providers=providers)}
% else:
${_(u"Congratulations! You are eligible to receive course credit for successfully completing your edX course!")}
${_(u"Congratulations! You are now eligible to receive course credit for successfully completing your edX course!")}
% endif
${_(u"Click on the link below to get your credit now:")}
......@@ -17,7 +17,13 @@ ${dashboard_link}
${_(u"Course credit can help you get a jump start on your university degree, finish a degree already started, or fulfill requirements at a different academic institution.")}
${_(u'To get course credit, simply go to your edX dashboard and click the "Get Credit" button. After you receive your credit, you will also have an official academic transcript at the institution that granted the credit.')}
${_(u'There are 2 steps to getting course credit.')}
${_(u'1. Purchase credit by going to your edX dashboard and clicking the "Get Credit" button below the course title.')}'
${_(u'2. When your payment is complete, return to the dashboard and click the "Request Credit" button under the course title to request an official academic transcript at the institution that granted the credit.')}
${_(u"We hope you enjoyed the course, and we hope to see you in future edX courses!")}
${_(u"The edX team")}
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