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/historyseries.html

46 lines
1010 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_series" class="mdl-data-table" style="width:100%">
<thead>
<tr>
<th>Action</th>
<th>Name</th>
<th>Episode</th>
<th>Episode Title</th>
<th>Date</th>
<th>Description</th>
</tr>
</thead>
</table>
{% endblock body %}
5 years ago
{% block tail %}
<script>
$(document).ready(function() {
var table = $('#history_series').DataTable( {
"processing": true,
"serverSide": true,
"searching": false,
"ordering": false,
"lengthChange": false,
"ajax": "/api/history_series",
"columns": [
{ "data": "action" },
{ "data": "seriesTitle" },
{ "data": "episode_number" },
{ "data": "episodeTitle" },
{ "data": "timestamp" },
{ "data": "description" }
]
} );
} );
</script>
5 years ago
{% endblock tail %}