cadc580d6584cc26f85f3331c86fd8b6901cbd31
[edumed.git] / catalogue / templates / catalogue / lesson / course / lesson_detail.html
1 {% extends "catalogue/lesson/lesson_detail.html" %}
2
3 {% block sidebar-top %}
4
5 <section class="box">
6     <h1 class="realisation">Realizacja i czas lekcji</h1>
7     <p>Ta lekcja jest częścią tematu
8     <a href="{{ object.section.get_absolute_url }}"><strong>{{ object.section }}</strong></a>{% if object.level.slug = "liceum" %}
9         (na poziomie zaawansowanym)
10     {% endif %}.
11     {% with object.get_syntetic as synth %}
12     {% if synth %}
13     Dostępna jest również
14     <strong><a href="{{ object.get_syntetic.get_absolute_url }}">lekcja syntetyczna</a></strong>
15     dla tego tematu.
16     {% endif %}
17     {% endwith %}
18     </p>
19     <p>Czas trwania: 45 minut.</p>
20 </section>
21
22 {% if object.package %}
23     <section class="box-button"><a href="{{ object.package.url }}" class="dl-button">Pobierz całą lekcję</a></section>
24 {% endif %}
25 {% if object.student_package %}
26     <section><a href="{{ object.student_package.url }}" class="dl-button">Pobierz lekcję w wersji dla ucznia</a></section>
27 {% endif %}
28
29
30 {% endblock %}