Files
edx-platform/lms/templates/support/index.html
Braden MacDonald 9b9b88df52 chore: remove some usages of six (Python2 compat) (#32554)
* 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()
2023-07-17 12:18:43 -07:00

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>