Flask application repository for Banner Repeater's DAAP (Digital Archive of Artists Publishing).
SPARQL queries by Lozana Rossenova, CSS and JS by Joana Chicau, python and Jinja by Julie Boschat-Thorez.
See https://daap.network
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.
54 lines
1.5 KiB
54 lines
1.5 KiB
{% extends "layout.html" %}
|
|
{% block content %}
|
|
|
|
<div class="pagetitle" id="zinesindex-title">INDEX OF ZINES</div>
|
|
|
|
<table id="zinesindex-table">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Work</th>
|
|
<th>Alternative aliases</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for x in results['results']['bindings']%}
|
|
<tr>
|
|
<th><a href="artwork?id={{ x['work']['value'] | replace('http://daap.bannerrepeater.org/entity/', '') }}">{{ x['work']['value'] | replace('http://daap.bannerrepeater.org/entity/', '') }}</a></th>
|
|
<th class="label"><a href="artwork?id={{ x['work']['value'] | replace('http://daap.bannerrepeater.org/entity/', '') }}">{{ x["workLabel"]['value'] }}</a></th>
|
|
<th>
|
|
{% if "workAltLabel" in x %}
|
|
{{ x["workAltLabel"]["value"] }}
|
|
{% endif %}
|
|
</th>
|
|
<th class="description">
|
|
{% if "workDescription" in x %}
|
|
{{ x["workDescription"]["value"] }}
|
|
{% endif %}
|
|
</th>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
|
<script type="text/javascript" src="http://cdn.datatables.net/1.10.2/js/jquery.dataTables.min.js"></script>
|
|
<script type="text/javascript" src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
|
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('#zinesindex-table').dataTable({
|
|
ordering: false,
|
|
searching: false,
|
|
lengthChange: false,
|
|
pageLength:20,
|
|
info: false
|
|
});
|
|
});
|
|
</script>
|
|
|
|
|
|
{% endblock content %}
|