2020-12-21 18:41:55 +01:00
|
|
|
{% block menu %}
|
2020-12-29 22:56:28 +01:00
|
|
|
<button id="leftmostbtn" onclick="filterSelection('all')">All books</button>
|
2020-12-21 19:54:55 +01:00
|
|
|
<button><a href="/upload">Upload</a></button>
|
2020-12-21 18:41:55 +01:00
|
|
|
<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-29 22:56:28 +01:00
|
|
|
<div class="dropdown">
|
|
|
|
<button class="dropbtn">License</button>
|
|
|
|
<div class="dropdown-content">
|
|
|
|
{% for publicense in publicenses %}
|
|
|
|
<button type="button" name="button" onclick="filterSelection('{{ publicense }}')" >{{ publicense }}</button>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-21 18:41:55 +01:00
|
|
|
{% endblock menu %}
|