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.
25 lines
603 B
HTML
25 lines
603 B
HTML
4 years ago
|
{% extends "public/templates/public_template.html" %}
|
||
|
|
||
|
{% block title %}Upload book{% endblock %}
|
||
|
|
||
|
{% block main %}
|
||
|
|
||
|
<div class="requestabook">
|
||
|
|
||
|
<h2>Books Requested</h2>
|
||
|
<p class="compressed"><a class="linktorequest" href="/request_form">Fill a form to request a book</a></p>
|
||
|
|
||
|
{% for book in books %}
|
||
|
<div class="booksrequested">
|
||
|
<h4>{{ book['title'] }}</h4>
|
||
|
<p class="info">{{ book['author'] }}</p>
|
||
|
<p class="info">{{ book['publisher'] }}</p>
|
||
|
<p class="info">{{ book['year'] }}</p>
|
||
|
<p class="info">{{ book['extention'] }}</p>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|