518eb538122f19e9d6ee06d14f56e6c3c4094001
[edumed.git] / catalogue / templates / catalogue / lesson_detail.html
1 {% extends "base.html" %}
2 {% load url from future %}
3 {% load lesson_nav person_list from catalogue_tags %}
4 {% load find_competence url_for_level from curriculum_tags %}
5
6
7 {% block title %}{{ object }}{% endblock %}
8
9 {% block body %}
10     <!--h1>{{ object }}</h1-->
11
12 <aside id="sidebar">
13     <section class="box">
14         <h1 class="realisation">Realizacja i czas lekcji</h1>
15         {% if object.depth == 0 %}
16         <p>To lekcja jest syntezą działu
17         <strong>{{ object.section }}</strong>.
18         Dostępny jest również
19         <strong><a href="{% url 'catalogue_lessons' %}#{{ object.section.slug }}">szczegółowy kurs</a></strong>
20         dla tego działu.
21         </p>
22         {% else %}
23         <p>Ta lekcja jest częścią działu
24         <strong>{{ object.section }}</strong>.
25         Dostępna jest również
26         <strong><a href="{{ object.section.syntetic_lesson.get_absolute_url }}">lekcja syntetyczna</a></strong>
27         dla tego działu.
28         </p>
29         {% endif %}
30         <p>Czas trwania: 45 minut.</p>
31     </section>
32
33     {% if object.package %}
34         <section class="box-button"><a href="{{ object.package.url }}" class="dl-button">Pobierz całą lekcję</a></section>
35     {% endif %}
36     {% if object.student_package %}
37         <section><a href="{{ object.student_package.url }}" class="dl-button">Pobierz lekcję w wersji dla ucznia</a></section>
38     {% endif %}
39
40     <section class="section">
41         {% lesson_nav object %}
42     </section>
43
44     <section class="section-minor">
45         <p>Autor: {{ object.dc.authors|person_list }}</p>
46         <p>Licencja: <a href="{{ object.dc.license }}">{{ object.dc.license_description }}</a>.</p>
47     </section>
48
49     <section class="section-minor">
50         <ul class="link-list">
51             <li><a href="{{ object.xml_file.url }}">źródłowy plik XML</a></li>
52             <li><a href="{{ object.dc.about }}">lekcja na Platformie Redakcyjnej</a></li>
53         </ul>
54     </section>
55
56     {% if object.dc.competences %}
57     <section class="section-minor">
58         <ul class="link-list">
59         {% for comp_text in object.dc.competences %}
60             {% with comp_text|find_competence as competence %}
61             {% if competence %}
62                 <li><a href="{{ competence|url_for_level:object.level }}">
63                     {{ competence }}</a></li>
64             {% else %}
65                 {{ comp_text }}
66             {% endif %}
67             {% endwith %}
68         {% endfor %}
69         </ul>
70     </section>
71     {% endif %}
72
73     <section class="section-minor">
74         <p>{{ object.dc.description }}</p>
75     </section>
76
77 </aside>
78
79 <div id="main-bar">
80 {{ object.html_file.read|safe }}
81 </div>
82
83 {% endblock %}