mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-10 11:42:21 +01:00
48 lines
2.0 KiB
HTML
48 lines
2.0 KiB
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}Manage{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="table-responsive">
|
|
<table id="request-table" class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Artist</th>
|
|
<th>Title</th>
|
|
</tr>
|
|
<tr>
|
|
<th><input id="search-artist" class="search-input" type="text"></th>
|
|
<th><input id="search-title" class="search-input" type="text"></th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<th colspan="3" class="ts-pager form-horizontal">
|
|
<button type="button" class="btn first"><i class="icon-step-backward glyphicon glyphicon-step-backward"></i></button>
|
|
<button type="button" class="btn prev"><i class="icon-arrow-left glyphicon glyphicon-backward"></i></button>
|
|
<button type="button" class="btn next"><i class="icon-arrow-right glyphicon glyphicon-forward"></i></button>
|
|
<button type="button" class="btn last"><i class="icon-step-forward glyphicon glyphicon-step-forward"></i></button>
|
|
<select class="pagesize input-mini" title="Select page size">
|
|
<option selected value="10">10</option>
|
|
<option value="25">25</option>
|
|
<option value="50">50</option>
|
|
<option value="100">100</option>
|
|
<option value="500">500</option>
|
|
<option value="1000">1000</option>
|
|
</select>
|
|
<select class="pagenum input-mini" title="Select page number"></select>
|
|
</th>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script type="text/javascript" src="{% static 'js/js.cookie-2.1.3.min.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'js/manage.js' %}"></script>
|
|
<script type="text/javascript">
|
|
var csrf_token = "{{ csrf_token }}";
|
|
</script>
|
|
{% endblock %}
|