Files
edx-platform/lms/templates/credit_notifications/credit_eligibility_email.html
2019-08-28 16:08:34 +05:00

120 lines
4.2 KiB
HTML

<%page expression_filter="h"/>
<%!
from django.utils.translation import ugettext as _
from openedx.core.djangolib.markup import HTML, Text
%>
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<table class="cn-container">
<tbody>
<tr>
<td class="cn-body">
<table>
<tr>
<td class="cn-img-wrapper">
<a rel="noopener" target="_blank" title="" href="#">
<img class="cn-img" src="cid:${branded_logo}">
</a>
</td>
</tr>
<tr><td class="cn-content-clear"></td></tr>
<tr>
<td class="cn-content">
<p>
% 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>
% if providers:
${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=HTML(u'</a>'),
platform_name=settings.PLATFORM_NAME,
providers=providers
)}
% else:
${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=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.")}
</p>
<p>
${_(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=HTML(u'</a>'),
bold_start=HTML('<b>'),
bold_end=HTML('</b>'),
platform_name=settings.PLATFORM_NAME
)}
</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)}
</p>
</td>
</tr>
<tr><td class="cn-content-clear cn-footer"></td></tr>
<tr>
<td class="cn-footer-content">
<p>
${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>
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
<img src="${tracking_pixel}"/>
</body>
</html>