36ec0e012a3724ed33c4b039eb5daeedf8e84d20
[wolnelektury.git] / src / pdcounter / templates / pdcounter / book_detail.html
1 {% extends 'base.html' %}
2 {% load i18n %}
3 {% load time_tags %}
4
5 {% block global-content %}
6   <div class="l-container">
7     <div class="l-breadcrumb">
8       <a href="/"><span>Strona główna</span></a>
9       <a href="/katalog/lektury/"><span>Literatura</span></a>
10     </div>
11   </div>
12
13
14   <main class="l-main">
15     <section class="l-section">
16       <div class="l-content">
17         <header class="l-header">
18           <div class="l-header__content">
19             <p>{{ book.author }}</p>
20             <h1>{{ book.title }}</h1>
21             {% if book.translator %}
22               <p class="l-header__translators">
23                 tłum.
24                 {{ book.translator }}
25               </p>
26             {% endif %}
27           </div>
28         </header>
29         <article class="l-article">
30           {% if book.in_pd %}
31             <p>{% trans "This work is in public domain and will be published on Internet library of Wolne Lektury soon." %}</p>
32           {% else %}
33             {% if book.pd %}
34               <p>
35                 {% trans "This work will become part of public domain and will be allowed to be published without restrictions in" %}
36               </p>
37               <div class='countdown' data-until='{{ pd_counter|date_to_utc|utc_for_js }}'></div>
38               <p>
39                 {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}
40               </p>
41             {% else %}
42               <p>
43                 {% trans "This work is copyrighted." %}
44                 {% trans "<a href='http://domenapubliczna.org/co-to-jest-domena-publiczna/'>Find out</a> why Internet libraries can't publish this work." %}
45               </p>
46             {% endif %}
47           {% endif %}
48         </article>
49       </div>
50     </section>
51   </main>
52
53
54 {% endblock %}