Commit 2d1247be by zubair-arbi

minor changes in credit eligibility notification

ECOM-2450
parent 69c47e09
......@@ -26,7 +26,11 @@
<tr>
<td class="cn-content">
<p>
${_(u"Hi {name},").format(name=full_name)}
% if full_name is not UNDEFINED and full_name is not None:
${_(u"Hi {name},").format(name=full_name)}
% else:
${_(u"Hi,")}
% endif
</p>
<p>
......@@ -44,7 +48,7 @@
</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. No application, transcript, or grade report is required.').format(
${_(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
),
......
<%! from django.utils.translation import ugettext as _ %>
% if full_name is not UNDEFINED and full_name is not None:
${_(u"Hi {name},").format(name=full_name)}
% else:
${_(u"Hi,")}
% endif
${_(u"Congratulations! You are eligible to receive course credit for successfully completing your edX course!")}
......@@ -9,8 +13,7 @@ ${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. No application, transcript, or grade report is required.')}
${_(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"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