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