c7d04c86140d577951c54b4e914e5a8243b74d81
[edumed.git] / catalogue / templates / catalogue / lesson / synthetic / 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 syntezą tematu
8     <strong>{{ object.section }}</strong></a>{% if object.level.slug = "liceum" %}
9         (na poziomie zaawansowanym)
10     {% endif %}.
11     Dostępny jest również
12     <strong><a href="{% url 'catalogue_lessons' %}#{{ object.section.slug }}">pełny kurs</a></strong>
13     tego tematu.
14     </p>
15     <p>Czas trwania: 45 minut.</p>
16 </section>
17
18 {% if object.package %}
19     <section class="box-button"><a href="{{ object.package.url }}" class="dl-button">Pobierz całą lekcję</a></section>
20 {% endif %}
21 {% if object.student_package %}
22     <section><a href="{{ object.student_package.url }}" class="dl-button">Pobierz lekcję w wersji dla ucznia</a></section>
23 {% endif %}
24
25 {% endblock %}