59 lines
2.1 KiB
HTML
59 lines
2.1 KiB
HTML
<%! 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>
|
|
|
|
<%include file="/dashboard/_dashboard_prompt_midcourse_reverify.html" />
|
|
|
|
<%include file="/courseware/course_navigation.html" args="active_page='info'" />
|
|
|
|
<%block name="js_extra">
|
|
<script type="text/javascript" src="${static.url('js/jquery.treeview.js')}"></script>
|
|
<script type="text/javascript" charset="utf-8">
|
|
$(document).ready(function(){
|
|
$(".handouts").treeview({collapsed:true, unique:true/*, cookieId: "treeview-book-nav", persist: "cookie"*/});
|
|
});
|
|
</script>
|
|
</%block>
|
|
|
|
<%block name="bodyclass">${course.css_class or ''}</%block>
|
|
<section class="container">
|
|
<div class="info-wrapper">
|
|
% if user.is_authenticated():
|
|
<section class="updates">
|
|
% if staff_access and masquerade is not UNDEFINED and studio_url is not None:
|
|
% if masquerade == 'staff':
|
|
<div class="wrap-instructor-info studio-view">
|
|
<a class="instructor-info-action" href="${studio_url}">${_("View Updates in Studio")}</a>
|
|
</div>
|
|
% endif
|
|
% endif
|
|
|
|
<h1>${_("Course Updates & News")}</h1>
|
|
${get_course_info_section(request, course, 'updates')}
|
|
</section>
|
|
<section aria-label="Handout Navigation" class="handouts">
|
|
<h1>${course.info_sidebar_name}</h1>
|
|
${get_course_info_section(request, course, 'handouts')}
|
|
</section>
|
|
% else:
|
|
<section class="updates">
|
|
<h1>${_("Course Updates & News")}</h1>
|
|
${get_course_info_section(request, course, 'guest_updates')}
|
|
</section>
|
|
<section aria-label="${_('Handout Navigation')}" class="handouts">
|
|
<h1>${_("Course Handouts")}</h1>
|
|
${get_course_info_section(request, course, 'guest_handouts')}
|
|
</section>
|
|
% endif
|
|
</div>
|
|
</section>
|