bc44673ead2271dde3caf12348206b82a994a43d
[redakcja.git] / src / documents / templates / documents / synchro.html
1 {% extends "documents/base.html" %}
2
3
4 {% block content %}
5
6   <div class="row mb-4">
7     <div class="col-4">
8     </div>
9     <div class="col-8">
10       {% if not length_ok %}
11         <div class="alert alert-warning">
12           Liczba znalezionych części dokumentu nie zgadza się z liczbą części audiobooka.
13           Konieczna jest korekta za pomocą atrybutów <code>forcesplit</code> i <code>nosplit</code>.
14         </div>
15       {% else %}
16         <form method="post" action="">
17           {% csrf_token %}
18           <button class="btn btn-primary">
19             Zaplanuj synchronizację
20           </button>
21         </form>
22       {% endif %}
23
24     </div>
25   </div>
26
27   <table class="table">
28     <thead>
29       <tr>
30         <th>Nagłówek cięcia</th>
31         <th>Audiobook</th>
32       </tr>
33     </thead>
34     {% for h, m in table %}
35       <tr>
36         <td>
37           {% if h %}
38             <a target="_blank" href="{% url 'wiki_editor' book.slug %}#CodeMirrorPerspective">
39               {{ h.0 }} (linia {{ h.2 }})
40             </a>
41           {% else %}
42             —
43           {% endif %}
44         </td>
45         <td>{{ m|default_if_none:'—' }}</td>
46       </tr>
47     {% endfor %}
48   </table>
49 {% endblock %}