2018-05-20 00:10:01 +02:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
<div class="container">
|
2018-05-31 18:26:22 +02:00
|
|
|
{% from "_formhelpers.html" import render_field %}
|
|
|
|
<form method="POST">
|
2018-06-01 17:20:12 +02:00
|
|
|
<div>{{ form.select(style="width: 100px; margin: 10px; float: left; font-size: 20px") }}</div>
|
2018-05-31 18:26:22 +02:00
|
|
|
<div class="search">
|
|
|
|
{{ render_field(form.search) }} </div>
|
|
|
|
<button type="submit" class="button">Search</button>
|
|
|
|
</form>
|
|
|
|
|
2018-05-20 00:10:01 +02:00
|
|
|
<h1 class="page-header">All Books</h1>
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
{% if messages %}
|
|
|
|
<div class="alert alert-success">
|
|
|
|
<ul>
|
|
|
|
{% for message in messages %}
|
|
|
|
<li>{{ message }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2018-05-29 16:18:00 +02:00
|
|
|
<table class="library_table" id="table" style="width:100%">
|
2018-06-02 00:20:54 +02:00
|
|
|
<thead>
|
2018-05-29 16:18:00 +02:00
|
|
|
<tr id="header">
|
|
|
|
<th>Cover</th>
|
2018-05-20 00:10:01 +02:00
|
|
|
<th>Title</th>
|
|
|
|
<th>Author</th>
|
2018-05-23 14:12:24 +02:00
|
|
|
<th>Filetype</th>
|
2018-05-27 22:11:35 +02:00
|
|
|
<th>Category</th>
|
2018-05-31 18:04:05 +02:00
|
|
|
<th>Stack</th>
|
2018-05-20 00:10:01 +02:00
|
|
|
</tr>
|
2018-06-02 00:20:54 +02:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2018-05-27 22:11:35 +02:00
|
|
|
{% for book in books|sort(attribute='title', reverse = False) %}
|
2018-05-20 00:10:01 +02:00
|
|
|
<tr>
|
2018-05-27 22:32:17 +02:00
|
|
|
<td>
|
2018-05-31 20:06:13 +02:00
|
|
|
|
2018-06-01 17:20:12 +02:00
|
|
|
<img class="no_cover" id="{{ book.title }}" src="/uploads/cover/{{ book.cover }}" width="40" onerror="if (this.src != '/static/img/default_cover.png') this.src = '/static/img/default_cover.png';">
|
2018-05-31 20:06:13 +02:00
|
|
|
<!-- <object class="no_cover" data="../static/img/default_cover.png" type="image/png" width="65">
|
|
|
|
<p hidden="True"></p>
|
|
|
|
|
|
|
|
</object>-->
|
2018-05-27 22:32:17 +02:00
|
|
|
</td>
|
2018-05-27 22:11:35 +02:00
|
|
|
<td class="title_col"><a href="books/{{ book.id }}">{{ book.title }}</a></td>
|
2018-05-23 14:42:52 +02:00
|
|
|
|
2018-05-27 22:11:35 +02:00
|
|
|
<td class="author_col"> {% for author in book.authors %}
|
2018-05-23 14:12:24 +02:00
|
|
|
|
2018-05-23 17:50:01 +02:00
|
|
|
<li><a href="{{url_for('show_author_by_id', id=author.id)}}">{{ author.author_name }}</a> </li>
|
2018-05-23 14:12:24 +02:00
|
|
|
|
|
|
|
{% endfor %}</td>
|
|
|
|
<td>{{ book.fileformat }}</td>
|
2018-05-27 22:11:35 +02:00
|
|
|
<td>{{ book.category}}</td>
|
2018-05-31 18:04:05 +02:00
|
|
|
<td> {% for stack in book.stacks %}
|
|
|
|
|
|
|
|
<li><a href="{{url_for('show_stack_by_id', id=stack.id)}}">{{ stack.stack_name }}</a> </li>
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
2018-05-20 00:10:01 +02:00
|
|
|
</tr>
|
2018-05-31 18:04:05 +02:00
|
|
|
|
2018-05-20 00:10:01 +02:00
|
|
|
{% endfor %}
|
2018-06-02 00:20:54 +02:00
|
|
|
</tbody>
|
2018-05-20 00:10:01 +02:00
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|