You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
396 B
HTML

{% extends "public/templates/public_template.html" %}
{% block title %}Upload book{% endblock %}
{% block main %}
<h1>Request a Book</h1>
<a href="/request">Fill a form to request a book</a>
{% for book in books %}
<h2>{{ book['title'] }}</h2>
<p>{{ book['author'] }}</p>
<p>{{ book['publisher'] }}</p>
<p>{{ book['year'] }}</p>
<p>{{ book['extention'] }}</p>
{% endfor %}
{% endblock %}