fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2a6d90a8debc12ce8f75c2c336a4e372a70379da
[wolnelektury.git]
/
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>
11
{% for elem in plan %}
12
<li><a href="{{ elem.link }}">{{ elem.title }}</a></li>
13
{% endfor %}
14
</ul>
15
16
{% endblock %}