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