Files
edx-platform/lms/templates/certificates/_about-edx.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

12 lines
392 B
HTML

<%page expression_filter="h"/>
<%! from django.utils.translation import ugettext as _ %>
<section class="about-item about-edx">
<h2 class="about-edx-title hd-4">${company_about_title}</h2>
<div class="about-edx-copy copy copy-meta">
<p>${company_about_description}</p>
<a class="action" href="${company_about_url}">${company_about_urltext}</a>
</div>
</section>