Cleanup
[wolnelektury.git] / src / isbn / templates / isbn / assigned_isbn.html
index 971dbab..dce5664 100644 (file)
@@ -1,14 +1,21 @@
-{% extends "base/base.html" %}
+{% extends "base_simple.html" %}
+
+{% block settings %}
+  {% load title %}
+  {% title 'Przypisane ISBN' %}
+{% endblock %}
 
 {% block title %}Przypisane ISBN{% endblock %}
 
 {% block body %}
 
   <h1>Przypisane ISBN</h1>
-  <h2>{{ title }}</h2>
+  <div class="normal-text">
+    <h2>{{ title }}</h2>
   <dl>
     {% for format, isbn in isbn_formats %}
       <dt>{{ format }}</dt><dd>{{ isbn }}</dd>
     {% endfor %}
   </dl>
+  </div>
 {% endblock %}