2020-12-21 18:41:55 +01:00
|
|
|
{% block menu %}
|
|
|
|
<a href="/"><button>All books</button></a>
|
|
|
|
<a href="/upload"><button>Upload</button></a>
|
|
|
|
<div class="dropdown">
|
|
|
|
<button class="dropbtn">Type</button>
|
|
|
|
<div class="dropdown-content">
|
|
|
|
{% for pubtype in pubtypes %}
|
2020-12-21 19:26:12 +01:00
|
|
|
<button type="button" name="button" onclick="filterSelection('{{ pubtype }}')" >{{ pubtype.title() }}</button>
|
2020-12-21 18:41:55 +01:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-21 19:26:12 +01:00
|
|
|
<div class="dropdown">
|
|
|
|
<button class="dropbtn">Year</button>
|
|
|
|
<div class="dropdown-content">
|
|
|
|
{% for pubyear in pubyears %}
|
|
|
|
<button type="button" name="button" onclick="filterSelection('{{ pubyear }}')" >{{ pubyear }}</button>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-21 18:41:55 +01:00
|
|
|
{% endblock menu %}
|