various fixes
[edumed.git] / catalogue / templates / catalogue / lesson_detail.html
index 6ccce2d..237e723 100755 (executable)
@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 {% load url from future %}
-{% load lesson_nav person_list from catalogue_tags %}
+{% load lesson_link lesson_nav person_list from catalogue_tags %}
 {% load competence curriculum url_for_level from curriculum_tags %}
 
 
         {% lesson_nav object %}
     </section>
 
+    {% if object.dc.relations %}
+    <section class="section-minor">
+        <h1>Powiązane lekcje</h1>
+        <ul class="link-list link-list-colored">
+        {% for uri in object.dc.relations %}
+            <li>{% lesson_link uri %}</li>
+        {% endfor %}
+        </ul>
+    </section>
+    {% endif %}
+
     {% if object.dc.competences %}
     <section class="section-minor">
         <h1>Kompetencje:</h1>
 
 <div id="main-bar">
 {{ object.html_file.read|safe }}
+
+
+<a class="top-link" href="#">wróć na górę</a>
+<footer class="lesson-footer">
+
+{% if object.section %}
+
+<p class="section-info"><a href="{{ object.section.get_absolute_url }}">Temat: {{ object.section }}</a>
+<br/>(<a href="{% url 'catalogue_lessons' %}">spis wszystkich lekcji</a>)</p>
+
+<p>
+{% with object.get_previous as previous %}
+    {% if previous %}
+        <a class="previous-lesson" href="{{ previous.get_absolute_url }}">&larr; {{ previous }}</a>
+    {% endif %}
+{% endwith %}
+
+{% with object.get_next as next %}
+    {% if next %}
+        <a class="next-lesson" href="{{ next.get_absolute_url }}">{{ next }} &rarr;</a>
+    {% endif %}
+{% endwith %}
+</p>
+{% endif %}
+
+<div class="clr"></div>
+</footer>
 </div>
 
 {% endblock %}