server-error.html 832 Bytes
Newer Older
1 2 3 4 5 6 7
<%! from django.utils.translation import ugettext as _ %>
<%inherit file="../main.html" />

<%block name="pagetitle">${_("Invalid Certificate Configuration.")}</%block>

<section class="outside-app">
    <h1>
Saleem Latif committed
8
        ${_(u"There is a problem with this certificate.")}
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
    </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>