plex-web-downloader/views/channel.jade

27 lines
645 B
Plaintext

extends layout
block content
h1= channel.name
table(id="example", class="table table-striped table-bordered", cellspacing="0", width="100%")
thead
tr
th Name
th duration
th Year
tbody
each video, i in videos
tr
td
a(href="/pwd/movie/#{video.id}") #{video.title} 
td= video.duration
td= video.year
script.
$(document).ready(function() {
$('#example').DataTable({
"language": {
"url": "//cdn.datatables.net/plug-ins/1.10.8/i18n/English.json"
}
});
});