91f0fa6a0fbb5fc9e1a13cef3aee194e7133ab38
[wolnelektury.git] / src / catalogue / templates / catalogue / player.html
1 <!DOCTYPE html>
2 <html>
3     {% load static from staticfiles %}
4     {% load i18n pipeline %}
5     {% load catalogue_tags %}
6     {% load thumbnail %}
7     {% load piwik_tags %}
8     <head>
9         <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
10         <meta name="description"
11             content="{{ book.title }} - darmowy audiobook na wolnej licencji" />
12         <title>{% trans "Wolne Lektury" %} ::
13             {{ book.title }} - {{ audiobook }}</title>
14         <link rel="icon" href="{% static "img/favicon.png" %}" type="image/png" />
15         {% stylesheet "all" %}
16         {% stylesheet "player" %}
17
18     </head>
19     <body id="{% block bodyid %}player{% endblock %}">
20
21                 {% if book.cover_thumb %}
22             <img src="
23                 {% thumbnail book.cover_thumb "101x140" as thumb %}
24                     {{ thumb.url }}
25                 {% empty %}
26                     {{ book.cover_thumb.url }}
27                 {% endthumbnail %}
28             " alt="Cover" style="float: left; margin: .5em 1em 1em 1em;" />
29         {% endif %}
30
31
32 <h1>{% book_title book %}</h1>
33
34 <div class="player-info normal-text">
35         <p><a target="_blank" href="{{ book.get_absolute_url }}">{% trans "Book's page" %}</a>.</p>
36         <p>{% trans "Download as" %} {% download_audio book False %}.</p>
37
38     {% if book.has_daisy_file %}
39         <p>DAISY:</p>
40         <ul class="daisy-list">
41         {% for media in book.get_daisy %}
42             <li><a href="{{ media.file.url }}">{{ media.name }}</a></li>
43         {% endfor %}
44         </ul>
45     {% endif %}
46 </div>
47
48 <div style="clear: both"></div>
49         {% include "catalogue/snippets/jplayer.html" %}
50
51         {% if projects|length > 1 %}
52             <p>{% trans "Audiobooks were prepared as a part of the projects:" %}</p>
53             <ul>
54             {% for cs, fb in projects %}
55                 <li>
56                 {% if fb %}
57                     {% blocktrans %}{{ cs }}, funded by {{ fb }}{% endblocktrans %}
58                 {% else %}
59                     {{ cs }}
60                 {% endif %}
61                 </li>
62             {% endfor %}
63             </ul>
64         {% else %}
65             <p>
66             {% with projects.0.0 as cs %}
67             {% with projects.0.1 as fb %}
68                 {% if fb %}
69                     {% blocktrans %}Audiobooks were prepared as a part of the {{ cs }} project funded by {{ fb }}.{% endblocktrans %}
70                 {% else %}
71                     {% blocktrans %}Audiobooks were prepared as a part of the {{ cs }} project.{% endblocktrans %}
72                 {% endif %}
73             {% endwith %}
74             {% endwith %}
75             </p>
76         {% endif %}
77
78
79         <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
80         {% javascript "player" %}
81
82         {% tracking_code %}
83     </body>
84 </html>