## This template is for track selection with Feature Based Enrollment (FBE).
## This means a learner in the default audit track will have a limited time to
## complete the course (course access duration) and may have some of the content
## of the course unavailable (gated content).
<%page expression_filter="h"/>
<%inherit file="track_selection.html" />
<%!
from django.utils.translation import gettext as _
from openedx.core.djangolib.markup import HTML, Text
%>
<%block name="track_selection_certificate_bullets">
${Text(_("Get {start_bold}access to all course activities{end_bold}, including both graded and non-graded assignments, while the course is running")).format(
start_bold=HTML(''),
end_bold=HTML(''),
)}
${Text(_("{start_bold}Full access{end_bold} to course content and materials, even after the course ends")).format(
start_bold=HTML(''),
end_bold=HTML(''),
)}
${Text(_("{link_start}Learn more{link_end} about course access")).format(
link_start=HTML('').format(track_comparison_url=track_links['learn_more']),
link_end=HTML('')
)}
${Text(_("Support our {start_bold}mission{end_bold} to increase access to high-quality education for everyone, everywhere")).format(
start_bold=HTML(''),
end_bold=HTML(''),
)}
${Text(_("Get temporary access to {start_bold}non-graded{end_bold} activities, including discussion forums and non-graded assignments")).format(
start_bold=HTML(''),
end_bold=HTML(''),
)}
${Text(_("Get {start_bold}temporary access{end_bold} to the course material, including videos and readings")).format(
start_bold=HTML(''),
end_bold=HTML(''),
)}
% if audit_access_deadline:
${_("Access expires and all progress will be lost on")} ${audit_access_deadline}
% else:
${_("Access expires and all progress will be lost")}