reformat templates
[wolnelektury.git] / src / wolnelektury / templates / publish_plan.html
index c4c3d6e..ffc1150 100755 (executable)
@@ -1,16 +1,15 @@
-{% extends "base.html" %}
+{% extends "base/base.html" %}
 {% load i18n %}
 
 {% block titleextra %}{% trans "Publishing plan" %}{% endblock titleextra %}
 
 
 {% block body %}
-<h1>{% trans "Publishing plan" %}</h1>
-
-<ul class="normal-text">
-{% for elem in plan %}
-    <li><a href="{{ elem.link }}">{{ elem.title }}</a></li>
-{% endfor %}
-</ul>
+  <h1>{% trans "Publishing plan" %}</h1>
 
+  <ul class="normal-text">
+    {% for elem in plan %}
+      <li><a href="{{ elem.link }}">{{ elem.title }}</a></li>
+    {% endfor %}
+  </ul>
 {% endblock %}