%! from django.utils.translation import ugettext as _ %>
<%! from courseware.courses import get_course_info_section %>
<%inherit file="/main.html" />
<%namespace name='static' file='/static_content.html'/>
<%block name="pagetitle">${__("{course_number} Course Info").format(course_number=course.display_number_with_default)}%block>
<%block name="headextra">
<%static:css group='style-course-vendor'/>
<%static:css group='style-course'/>
%block>
<%block name="title">
${_("{course_number} Course Info").format(course_number=course.display_number_with_default)}%block>
<%include file="/dashboard/_dashboard_prompt_midcourse_reverify.html" />
<%include file="/courseware/course_navigation.html" args="active_page='info'" />
<%block name="js_extra">
%block>
<%block name="bodyclass">${course.css_class}%block>
% if user.is_authenticated():
${_("Course Updates & News")}
${get_course_info_section(request, course, 'updates')}
${course.info_sidebar_name}
${get_course_info_section(request, course, 'handouts')}
% else:
${_("Course Updates & News")}
${get_course_info_section(request, course, 'guest_updates')}
${_("Course Handouts")}
${get_course_info_section(request, course, 'guest_handouts')}
% endif