30 lines
932 B
HTML
30 lines
932 B
HTML
<%inherit file="main.html" />
|
|
<%include file="course_navigation.html" args="active_page='info'" />
|
|
<%!
|
|
from courseware.courses import get_course_info_section
|
|
%>
|
|
|
|
<section class="container">
|
|
<section class="course-content">
|
|
<section class="courseware">
|
|
<div class="info-wrapper">
|
|
% if user.is_authenticated():
|
|
<section class="updates">
|
|
${get_course_info_section(course, 'updates')}
|
|
</section>
|
|
<section aria-label="Handout Navigation" class="handouts">
|
|
${get_course_info_section(course, 'handouts')}
|
|
</section>
|
|
% else:
|
|
<section class="updates">
|
|
${get_course_info_section(course, 'guest_updates')}
|
|
</section>
|
|
<section aria-label="Handout Navigation" class="handouts">
|
|
${get_course_info_section(course, 'guest_handouts')}
|
|
</section>
|
|
% endif
|
|
</div>
|
|
</section>
|
|
</section>
|
|
</section>
|