21 lines
578 B
HTML
21 lines
578 B
HTML
<%inherit file="base.html" />
|
|
<%block name="title">Course Manager</%block>
|
|
|
|
<%block name="content">
|
|
<section class="main-container">
|
|
|
|
<%include file="widgets/navigation.html"/>
|
|
|
|
<section class="main-content">
|
|
<%include file="widgets/week-edit.html"/>
|
|
<%include file="widgets/week-new.html"/>
|
|
<%include file="widgets/sequnce-edit.html"/>
|
|
<%include file="widgets/video-edit.html"/>
|
|
<%include file="widgets/video-new.html"/>
|
|
<%include file="widgets/problem-edit.html"/>
|
|
<%include file="widgets/problem-new.html"/>
|
|
</section>
|
|
|
|
</section>
|
|
</%block>
|