Group imports together in Mako templates

This commit is contained in:
David Baumgold
2015-06-02 16:03:30 -04:00
parent 103ae47759
commit 34addd8fa8
93 changed files with 436 additions and 342 deletions

View File

@@ -1,7 +1,9 @@
<%! import json %>
<%! from django.utils.translation import ugettext as _ %>
<%! from django.core.urlresolvers import reverse %>
<%inherit file="base.html" />
<%!
import json
from django.utils.translation import ugettext as _
from django.core.urlresolvers import reverse
%>
<%def name="online_help_token()"><% return "team_library" %></%def>
<%block name="title">${_("Library User Access")}</%block>
<%block name="bodyclass">is-signedin course users view-team</%block>