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.
bazarr/views/historymovies.html

42 lines
882 B

5 years ago
{% extends '_main.html' %}
5 years ago
{% block title %}History (Series) - Bazarr{% endblock %}
5 years ago
{% block head %}
5 years ago
{% endblock head %}
5 years ago
{% block body %}
<table id="history_movies" class="mdl-data-table" style="width:100%">
<thead>
<tr>
<th>action</th>
<th>title</th>
<th>timestamp</th>
<th>description</th>
</tr>
</thead>
</table>
{% endblock body %}
5 years ago
{% block tail %}
<script>
$(document).ready(function() {
var table = $('#history_movies').DataTable( {
"processing": true,
"serverSide": true,
"searching": false,
"ordering": false,
"lengthChange": false,
"ajax": "/api/history_movies",
"columns": [
{ "data": "action" },
{ "data": "title" },
{ "data": "timestamp" },
{ "data": "description" }
]
} );
} );
</script>
5 years ago
{% endblock tail %}