X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ae60b2a3949e96357477cc04f90fd0873cee8a92..dbe0a80a192f561f29f917cd741b78329834a89f:/src/wolnelektury/templates/publish_plan.html

diff --git a/src/wolnelektury/templates/publish_plan.html b/src/wolnelektury/templates/publish_plan.html
old mode 100755
new mode 100644
index c4c3d6e6a..04a9820d0
--- a/src/wolnelektury/templates/publish_plan.html
+++ b/src/wolnelektury/templates/publish_plan.html
@@ -1,16 +1,21 @@
-{% extends "base.html" %}
+{% extends "base_simple.html" %}
 {% load i18n %}
 
-{% block titleextra %}{% trans "Publishing plan" %}{% endblock titleextra %}
+{% block settings %}
+  {% load title %}
+  {% trans "Plan publikacji" as title %}
+  {% title title %}
+{% endblock %}
 
+{% block titleextra %}{% trans "Plan publikacji" %}{% 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>
+{% block body %}
+  <h1>{% trans "Plan publikacji" %}</h1>
 
+  <ul class="normal-text">
+    {% for elem in plan %}
+      <li><a href="{{ elem.link }}">{{ elem.title }}</a></li>
+    {% endfor %}
+  </ul>
 {% endblock %}