24 lines
823 B
HTML
24 lines
823 B
HTML
{% extends "core.html" %}
|
|
|
|
{% block main %}
|
|
<link href="/css/books.css" rel="stylesheet">
|
|
<link href="/css/upload.css" rel="stylesheet">
|
|
|
|
<section id="books">
|
|
{% if account is not empty %}
|
|
{% if account.permissions.books is defined and account.permissions.books == 1 %}
|
|
<form class="upload unselectable" action="/storage/books/write" enctype="multipart/form-data" method="POST">
|
|
<input type="file" name="books[]" accept=".pdf" oninput="this.parentElement.submit();" multiple="true">
|
|
<p>+</p>
|
|
</form>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% for book in books %}
|
|
<article class="book">
|
|
<img src="/storage/books/{{ book.id|e }}/0" class="unselectable" alt='Обложка книги "{{ book.title|e }}"'>
|
|
<h4><a href="/books/{{ book.id|e }}">{{ book.title|e }}</a></h3>
|
|
</article>
|
|
{% endfor %}
|
|
</section>
|
|
{% endblock %}
|