Files
edx-platform/lms/templates/certificates/server-error.html
Adeel Khan d9d4ae5535 Fix invalid certificate page for a11y and translation.
Invalid certificate page has hardcoded lang='en' for
html, that would cause a11y issue for other languages user.
Some of screen reader text is not under translation. This patch
would fix both issues.

LEARNER-3110
2018-01-25 14:02:12 +05:00

26 lines
859 B
HTML

<%page expression_filter="h"/>
<%! 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'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>