This is a reusable plain version the varia library website. You can host your own website of books using just a simple csv file
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
|
|
<div id="nav" class="container">
|
|
|
|
<button id="leftmostbtn"><a href="/">All books</a></button>
|
|
|
|
<button><a href="/upload">Upload</a></button>
|
|
|
|
</div>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Title of publication</td>
|
|
|
|
<td>{{ fullpublication["Title"] }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Author/Editor</td>
|
|
|
|
<td>{{ fullpublication["Author"] }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Year</td>
|
|
|
|
<td>{{ fullpublication["Year"] }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Custodian</td>
|
|
|
|
<td>{{ fullpublication["Custodian"] }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Fields</td>
|
|
|
|
<td>{{ fullpublication["Fields"] }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Type of publication</td>
|
|
|
|
<td>{{ fullpublication["Type"] }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Publishers</td>
|
|
|
|
<td>{{ fullpublication["Publishers"] }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>License</td>
|
|
|
|
<td>{{ fullpublication["License"] }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Highlights</td>
|
|
|
|
<td><p>{{ fullpublication["Highlights"] }}</p></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Comments</td>
|
|
|
|
<td><p>{{ fullpublication["Comments"] }}</p></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Currently borrowed by</td>
|
|
|
|
<td>No one</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|