plex-web-downloader/views/channel.jade

37 lines
1.1 KiB
Plaintext

extends layout
block content
h1= channel.name
table(id="example", class="table table-striped table-bordered", cellspacing="0", width="100%")
thead
tr
th Nom
if(channel.type == 2)
th Série
th Saison
th Episode
th Durée
th Année
tbody
each video, i in videos
tr
td
a(href="/movie/#{video.id}")= video.title
if(channel.type == 2)
td
if(typeof video.info_meta !== 'undefined' && typeof video.info_meta.show !== 'undefined')
#{video.info_meta.show}
td
if(typeof video.info_meta !== 'undefined' && typeof video.info_meta.season !== 'undefined')
#{video.info_meta.season}
td
if(typeof video.info_meta !== 'undefined' && typeof video.info_meta.episode !== 'undefined')
#{video.info_meta.episode}
td= video.second
td= video.year
script.
$(document).ready(function() {
$('#example').DataTable();
});