* get rid of six.text_type(s) * get rid of six.b() * get rid of six.string_types * get rid of six.PY2/six.PY3 * get rid of six.iteritems() and six.viewvalues()
25 lines
542 B
HTML
25 lines
542 B
HTML
## mako
|
|
<%page expression_filter="h"/>
|
|
<%!
|
|
from django.urls import reverse
|
|
from django.utils.translation import gettext as _
|
|
%>
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
|
|
<%inherit file="../main.html" />
|
|
|
|
<%block name="pagetitle">
|
|
${_("Student Support")}
|
|
</%block>
|
|
|
|
<%block name="content">
|
|
<section class="container outside-app">
|
|
<h1>${_("Student Support")}</h1>
|
|
<ul>
|
|
% for url in urls:
|
|
<li><a href="${url["url"]}">${str(url["name"])}</a>: ${str(url["description"])}</li>
|
|
% endfor
|
|
</ul>
|
|
</section>
|
|
</%block>
|