1 {% extends "base.html" %}
2 {% load lesson_link lesson_nav person_list from catalogue_tags %}
3 {% load competence curriculum url_for_level from curriculum_tags %}
6 {% block title %}{{ object }}{% endblock %}
9 <!--h1>{{ object }}</h1-->
12 {% block sidebar-top %}{% endblock %}
14 <section class="section">
15 {% lesson_nav object %}
18 {% if object.dc.relations %}
19 <section class="section-minor">
20 <h1>Powiązane lekcje</h1>
21 <ul class="link-list link-list-colored">
22 {% for uri in object.dc.relations %}
23 <li>{% lesson_link uri %}</li>
29 {% if object.dc.competences %}
30 <section class="section-minor">
33 {% competence object.dc.competences object.level %}
38 {% if object.dc.curriculum %}
39 <section class="section-minor">
40 <h1>Podstawa programowa:</h1>
42 {% curriculum object.dc.curriculum %}
44 <h1>Nowa podstawa programowa:</h1>
46 {% curriculum object.dc.curriculum_new new=True %}
51 <section class="section-micro">
54 {% if object.dc.authors_textbook %}
55 Tekst: {{ object.dc.authors_textbook|person_list }}<br/>
57 {% if object.dc.authors_scenario %}
58 Scenariusz: {{ object.dc.authors_scenario|person_list }}<br/>
60 {% if object.dc.authors_expert %}
61 Konsultacja merytoryczna: {{ object.dc.authors_expert|person_list }}<br/>
63 {% if object.dc.authors_methodologist %}
64 Konsultacja metodyczna: {{ object.dc.authors_methodologist|person_list }}<br/>
66 Licencja: <a href="{{ object.dc.license }}">{{ object.dc.license_description }}</a>.</p>
69 <section class="section-micro">
71 <ul class="link-list">
72 <li><a href="{{ object.xml_file.url }}">źródłowy plik XML</a></li>
73 <!--li><a href="{{ object.dc.about }}">lekcja na Platformie Redakcyjnej</a></li-->
77 <section class="section-micro">
78 <p>{{ object.dc.description }}</p>
85 {% block lesson-info %}
88 {{ object.html_file.read|safe }}
91 <a class="top-link" href="#">wróć na górę</a>
92 <footer class="lesson-footer">
94 {% if object.section %}
96 <p class="section-info"><a href="{{ object.section.get_absolute_url }}">Temat: {{ object.section }}</a>
97 <br/>(<a href="{% url 'catalogue_lessons' %}">spis wszystkich lekcji</a>)</p>
100 {% with object.get_previous as previous %}
102 <a class="previous-lesson" href="{{ previous.get_absolute_url }}">← {{ previous }}</a>
106 {% with object.get_next as next %}
108 <a class="next-lesson" href="{{ next.get_absolute_url }}">{{ next }} →</a>
114 <div class="clr"></div>
116 <p class="section-info">
117 {% block suggest-link %}
118 <a href="{% url 'contact_form' 'sugestie' %}?temat={{ 'Lekcja: '|add:object.title|urlencode }}">
119 Zgłoś swoją uwagę na temat tej lekcji.
127 {% if request.user.is_authenticated and object.forum_topics.all.count %}
130 {% for forum_topic in object.forum_topics.all %}
131 <li><a href="{{forum_topic.pybb_topic.get_absolute_url}}">{{forum_topic.pybb_topic.name}}</a></li>