1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-23 16:23:41 +00:00
bazarr/views/movies.html
Louis Vézina db88156dc1 WIP
2019-12-28 11:43:48 -05:00

47 lines
1 KiB
HTML

{% extends '_main.html' %}
{% block title %}Movies - Bazarr{% endblock %}
{% block head %}
{% endblock head %}
{% block body %}
<table id="movies" class="mdl-data-table" style="width:100%">
<thead>
<tr>
<th>Monitored</th>
<th>Name</th>
<th>Path exist</th>
<th>Audio Language</th>
<th>Subtitles Languages</th>
<th>Hearing-Impaired</th>
<th>Forced</th>
</tr>
</thead>
</table>
{% endblock body %}
{% block tail %}
<script>
$(document).ready(function() {
var table = $('#movies').DataTable( {
"processing": true,
"serverSide": true,
"searching": false,
"ordering": false,
"lengthChange": false,
"ajax": "/api/movies",
"columns": [
{ "data": "monitored" },
{ "data": "title" },
{ "data": "exist" },
{ "data": "audio_language.name" },
{ "data": "languages[, ].code2" },
{ "data": "hearing_impaired" },
{ "data": "forced" }
]
} );
} );
</script>
{% endblock tail %}