fix: get correct root URL for Track Selection page (#28772)

REV-2387
This commit is contained in:
julianajlk
2021-09-20 09:56:42 -04:00
committed by GitHub
parent c4440d3b52
commit 42d79c5ef5
5 changed files with 31 additions and 13 deletions

View File

@@ -1,5 +1,8 @@
.track-selection-container {
max-width: 946px;
.wrapper-register-choose {
max-width: 946px;
margin: 0 auto;
}
.page-header h3 {
color: #001B1E;
@@ -25,7 +28,7 @@
}
.track-selection-certificate .choice-bullets li:last-child {
margin-bottom: 2rem;
margin-bottom: 1.5rem;
}
.track-selection-audit .choice-bullets li:last-child {

View File

@@ -59,9 +59,9 @@ from openedx.core.djangolib.markup import HTML, Text
end_bold=HTML('</b>'),
)}</li>
% if audit_access_deadline:
<li>${_("Access expires and all progress will be lost on")} ${audit_access_deadline}</li>
<li class="font-italic">${_("Access expires and all progress will be lost on")} ${audit_access_deadline}</li>
% else:
<li>${_("Access expires and all progress will be lost")}</li>
<li class="font-italic">${_("Access expires and all progress will be lost")}</li>
% endif
</ul>
</div>