Lessons - UI changes.
[wolnelektury.git] / wolnelektury / templates / lessons / document_list.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags chunks %}
4
5 {% block bodyid %}document-list-body{% endblock %}
6
7 {% block title %}{% trans "Hand-outs for teachers on " %}WolneLektury.pl{% endblock %}
8
9 {% block extrahead %}
10     <script type="text/javascript" charset="utf-8">
11         $(function() {
12             $("#document-list a").click(function(e){
13                   e.preventDefault();
14                   if($("#presentation-frame").length == 0){
15                     $("<iframe id='presentation-frame' width='600' height='500' border='0' src=''>").appendTo($("#document-detail"));
16                   }
17                   $("#presentation-frame").attr("src", this.href);
18                   $('#document-list li').css('border', 'none');
19                   $(this).closest('li').css('border', '1px solid green');
20                   $('.download-doc').hide();
21                   $(this).next('.download-doc').show();
22             });
23         });
24     </script>
25 {% endblock extrahead %}
26 {% block body %}
27     <h1>{% trans "Hand-outs for teachers" %}</h1>
28     <form action="{% url search %}" method="GET" accept-charset="utf-8" id="search-form">
29         <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
30     </form>
31     <div id="document-list">
32         {% chunk "document-list" %}
33     </div>
34     <div id="document-detail">
35     </div>
36 {% endblock %}