official curriculum
[edumed.git] / catalogue / templates / catalogue / lesson_detail.html
index 9aab890..6ccce2d 100755 (executable)
@@ -1,6 +1,8 @@
 {% extends "base.html" %}
 {% load url from future %}
 {% load lesson_nav person_list from catalogue_tags %}
+{% load competence curriculum url_for_level from curriculum_tags %}
+
 
 {% block title %}{{ object }}{% endblock %}
 
 <aside id="sidebar">
     <section class="box">
         <h1 class="realisation">Realizacja i czas lekcji</h1>
-        {% if object.depth == 0 %}
-        <p>To lekcja jest syntezą działu
-        <strong>{{ object.section }}</strong>.
+        {% if object.type == 'synthetic' %}
+        <p>To lekcja jest syntezą tematu
+        <strong>{{ object.section }}</strong></a>{% if object.level.slug = "liceum" %}
+            (na poziomie zaawansowanym)
+        {% endif %}.
         Dostępny jest również
-        <strong><a href="{% url 'catalogue_lessons' %}#{{ object.section.slug }}">szczegółowy kurs</a></strong>
-        dla tego działu.
+        <strong><a href="{% url 'catalogue_lessons' %}#{{ object.section.slug }}">pełny kurs</a></strong>
+        tego tematu.
         </p>
-        {% else %}
-        <p>Ta lekcja jest częścią działu
-        <strong>{{ object.section }}</strong>.
+        <p>Czas trwania: 45 minut.</p>
+        {% elif object.type == 'course' %}
+        <p>Ta lekcja jest częścią tematu
+        <a href="{{ object.section.get_absolute_url }}"><strong>{{ object.section }}</strong></a>{% if object.level.slug = "liceum" %}
+            (na poziomie zaawansowanym)
+        {% endif %}.
+        {% with object.get_syntetic as synth %}
+        {% if synth %}
         Dostępna jest również
-        <strong><a href="{{ object.section.syntetic_lesson.get_absolute_url }}">lekcja syntetyczna</a></strong>
-        dla tego działu.
-        </p>
+        <strong><a href="{{ object.get_syntetic.get_absolute_url }}">lekcja syntetyczna</a></strong>
+        dla tego tematu.
         {% endif %}
+        {% endwith %}
+        </p>
         <p>Czas trwania: 45 minut.</p>
+        {% else %}
+        <p>?</p>
+        {% endif %}
     </section>
 
     {% if object.package %}
         {% lesson_nav object %}
     </section>
 
+    {% if object.dc.competences %}
     <section class="section-minor">
-        <p>Autor: {{ object.dc.authors|person_list }}</p>
-        <p>Licencja: <a href="{{ object.dc.license }}">{{ object.dc.license_description }}</a>.</p>
+        <h1>Kompetencje:</h1>
+        <ul class="plain">
+        {% competence object.dc.competences %}
+        </ul>
     </section>
+    {% endif %}
 
+    {% if object.dc.curriculum %}
     <section class="section-minor">
+        <h1>Podstawa programowa:</h1>
+        <ul class="plain">
+        {% curriculum object.dc.curriculum %}
+        </ul>
+    </section>
+    {% endif %}
+
+    <section class="section-micro">
+        <h1>Informacje:</h1>
+        <p>
+        {% if object.dc.authors_textbook %}
+        Tekst: {{ object.dc.authors_textbook|person_list }}<br/>
+        {% endif %}
+        {% if object.dc.authors_scenario %}
+        Scenariusz: {{ object.dc.authors_scenario|person_list }}<br/>
+        {% endif %}
+        {% if object.dc.authors_expert %}
+        Konsultacja merytoryczna: {{ object.dc.authors_expert|person_list }}<br/>
+        {% endif %}
+        Licencja: <a href="{{ object.dc.license }}">{{ object.dc.license_description }}</a>.</p>
+    </section>
+
+    <section class="section-micro">
+        <h1>Narzędzia:</h1>
         <ul class="link-list">
             <li><a href="{{ object.xml_file.url }}">źródłowy plik XML</a></li>
-            <li><a href="{{ object.dc.about }}">lekcja na Platformie Redakcyjnej</a></li>
+            <!--li><a href="{{ object.dc.about }}">lekcja na Platformie Redakcyjnej</a></li-->
         </ul>
     </section>
 
-    <section class="section-minor">
+    <section class="section-micro">
         <p>{{ object.dc.description }}</p>
     </section>