45e65c6f556eae2b8c77379d88221aca26cee153
[wolnelektury.git] / src / wolnelektury / templates / publish_plan.html
1 {% extends "base_simple.html" %}
2 {% load i18n %}
3
4 {% block settings %}
5   {% load title %}
6   {% trans "Publishing plan" as title %}
7   {% title title %}
8 {% endblock %}
9
10 {% block titleextra %}{% trans "Publishing plan" %}{% endblock titleextra %}
11
12
13 {% block body %}
14   <h1>{% trans "Publishing plan" %}</h1>
15
16   <ul class="normal-text">
17     {% for elem in plan %}
18       <li><a href="{{ elem.link }}">{{ elem.title }}</a></li>
19     {% endfor %}
20   </ul>
21 {% endblock %}