Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fun-apps / templates / course_dashboard / enrollment-stats-global.html
Size: Mime:
## mako
<%inherit file="base_global.html" />
<%! from django.utils.translation import ugettext as _ %>

<%block name="content">
    <%include file="enrollment-stats-content.html"/>
</%block>

<%block name="extra_footer">
    <% figure_label=_("Enrollments per day") %>
    <%include file="graph.html"
        args="stats_per_timestamp=enrollments_per_timestamp,
            figure_id='enrollment-stats',
            figure_label=figure_label"
    />
</%block>