bazarr/views/historyseries.html

46 lines
1010 B
HTML
Raw Normal View History

2019-12-28 16:43:48 +00:00
{% extends '_main.html' %}
2018-05-02 10:25:42 +00:00
2019-12-28 16:43:48 +00:00
{% block title %}History (Series) - Bazarr{% endblock %}
2018-05-02 10:25:42 +00:00
2019-12-28 16:43:48 +00:00
{% block head %}
2018-05-02 10:25:42 +00:00
2019-12-28 16:43:48 +00:00
{% endblock head %}
2018-05-02 10:25:42 +00:00
2019-12-28 16:43:48 +00:00
{% 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 %}
2018-05-02 10:25:42 +00:00
2019-12-28 16:43:48 +00:00
{% 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" }
]
} );
} );
2019-09-17 14:01:26 +00:00
</script>
2019-12-28 16:43:48 +00:00
{% endblock tail %}