X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/996389725d454494a8e0046f6b7b4f03d9407463..483e6706c77dd3531f8b02334a7fde0491ca138d:/catalogue/templates/catalogue/lesson_detail.html diff --git a/catalogue/templates/catalogue/lesson_detail.html b/catalogue/templates/catalogue/lesson_detail.html index 74e6c3a..237e723 100755 --- a/catalogue/templates/catalogue/lesson_detail.html +++ b/catalogue/templates/catalogue/lesson_detail.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load url from future %} -{% load lesson_nav person_list from catalogue_tags %} -{% load find_competence url_for_level from curriculum_tags %} +{% load lesson_link lesson_nav person_list from catalogue_tags %} +{% load competence curriculum url_for_level from curriculum_tags %} {% block title %}{{ object }}{% endblock %} @@ -13,19 +13,27 @@

Realizacja i czas lekcji

{% if object.type == 'synthetic' %} -

To lekcja jest syntezą działu - {{ object.section }}. +

To lekcja jest syntezą tematu + {{ object.section }}{% if object.level.slug = "liceum" %} + (na poziomie zaawansowanym) + {% endif %}. Dostępny jest również - szczegółowy kurs - dla tego działu. + pełny kurs + tego tematu.

Czas trwania: 45 minut.

{% elif object.type == 'course' %} -

Ta lekcja jest częścią działu - {{ object.section }}. +

Ta lekcja jest częścią tematu + {{ object.section }}{% if object.level.slug = "liceum" %} + (na poziomie zaawansowanym) + {% endif %}. + {% with object.get_syntetic as synth %} + {% if synth %} Dostępna jest również - lekcja syntetyczna - dla tego działu. + lekcja syntetyczna + dla tego tematu. + {% endif %} + {% endwith %}

Czas trwania: 45 minut.

{% else %} @@ -44,36 +52,59 @@ {% lesson_nav object %}
+ {% if object.dc.relations %}
-

Autor: {{ object.dc.authors|person_list }}

-

Licencja: {{ object.dc.license_description }}.

+

Powiązane lekcje

+
+ {% endif %} + {% if object.dc.competences %}
-
+ {% endif %} - {% if object.dc.competences %} + {% if object.dc.curriculum %}
-
{% endif %} -
+
+

Informacje:

+

+ {% if object.dc.authors_textbook %} + Tekst: {{ object.dc.authors_textbook|person_list }}
+ {% endif %} + {% if object.dc.authors_scenario %} + Scenariusz: {{ object.dc.authors_scenario|person_list }}
+ {% endif %} + {% if object.dc.authors_expert %} + Konsultacja merytoryczna: {{ object.dc.authors_expert|person_list }}
+ {% endif %} + Licencja: {{ object.dc.license_description }}.

+
+ +
+

Narzędzia:

+ +
+ +

{{ object.dc.description }}

@@ -81,6 +112,33 @@
{{ object.html_file.read|safe }} + + +wróć na górę +
{% endblock %}