Files
edx-platform/cms/templates/index.html
2012-06-13 11:54:17 -04:00

20 lines
499 B
HTML

{% extends "base.html" %}
{% block title %}Course Manager{% endblock %}
{% block content %}
<section class="main-container">
{% include "widgets/navigation.html"%}
<section class="main-content">
{% include "widgets/week-edit.html"%}
{% include "widgets/week-new.html"%}
{% include "widgets/video-edit.html"%}
{% include "widgets/video-new.html"%}
{% include "widgets/problem-edit.html"%}
{% include "widgets/problem-new.html"%}
</section>
</section>
{% endblock %}