%! from django.core.urlresolvers import reverse from courseware.courses import course_image_url, get_course_about_section from courseware.access import has_access from certificates.models import CertificateStatuses %> <%inherit file="main.html" /> <%namespace name='static' file='static_content.html'/> <%block name="title">
% if course.has_ended(): Course Completed - ${course.end_date_text} % elif course.has_started(): Course Started - ${course.start_date_text} % else: # hasn't started yet Course Starts - ${course.start_date_text} % endif
Exam Series Code: ${exam_info.get('Exam_Series_Code')}
First Eligible Appointment Date: ${exam_info.get('First_Eligible_Appointment_Date')}
Last Eligible Appointment Date: ${exam_info.get('Last_Eligible_Appointment_Date')}
% endif