fnp
/
audio.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fac3700ab8c5694fe848d18fea087e8029df5084
[audio.git]
/
src
/
archive
/
templates
/
archive
/
book.html
1
{% extends "archive/base.html" %}
2
3
{% block content %}
4
<div class="card mt-4">
5
<div class="card-header">
6
<h2>Audiobooki</h2>
7
</div>
8
<div class="card-body">
9
<table class="table">
10
<thead>
11
<tr>
12
<th>?x</th>
13
</tr>
14
</thead>
15
<tbody>
16
{% for audiobook in object_list %}
17
<tr>
18
<td>{{ audiobook.index }}</td>
19
<td>
20
<a href="{% url 'file' audiobook.id %}">
21
{{ audiobook.title }}
22
</a>
23
</td>
24
</tr>
25
{% endfor %}
26
</tbody>
27
</table>
28
</div>
29
{% endblock %}