Files
edx-platform/lms/templates/courseware/grade_summary.html
2013-07-31 19:39:15 -04:00

18 lines
497 B
HTML

<%! from django.utils.translation import ugettext as _ %>
<%inherit file="/main.html" />
<%! from django.core.urlresolvers import reverse %>
<%namespace name='static' file='/static_content.html'/>
<%include file="/courseware/course_navigation.html" args="active_page=''" />
<section class="container">
<div class="gradebook-summary-wrapper">
<section class="gradebook-summary-content">
<h1>${_("Grade summary")}</h1>
<p>${_("Not implemented yet")}</p>
</section>
</div>
</section>