Files
edx-platform/lms/templates/certificates/server-error.html
2015-10-19 11:10:21 +05:00

25 lines
832 B
HTML

<%! from django.utils.translation import ugettext as _ %>
<%inherit file="../main.html" />
<%block name="pagetitle">${_("Invalid Certificate Configuration.")}</%block>
<section class="outside-app">
<h1>
${_(u"There is a problem with this certificate.")}
</h1>
<div>
<p>
${_("To resolve the problem, your partner manager should verify that the following information is correct.")}
</p>
<ul>
<li>${_("The institution&#39;s logo.")}</li>
<li>${_("The institution that is linked to the course.")}</li>
<li>${_("The course information in the Course Administration tool.")}</li>
</ul>
<br/>
<p>${_("If all of the information is correct and the problem persists, contact technical support.")}</p>
</div>
</section>