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

48 lines
1.0 KiB

5 years ago
{% 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</th>
<th>Audio Language</th>
<th>Subtitles Languages</th>
<th>Hearing-Impaired</th>
<th>Forced</th>
</tr>
</thead>
</table>
{% endblock body %}
{% block tail %}
7 years ago
<script>
5 years ago
$(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": "mapped_path" },
{ "data": "audio_language.name" },
{ "data": "languages[, ].code2" },
{ "data": "hearing_impaired" },
{ "data": "forced" }
]
} );
} );
</script>
5 years ago
{% endblock tail %}