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
12 lines
392 B
HTML
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>
|