plex-web-downloader/views/channel.jade

23 lines
499 B
Plaintext
Raw Normal View History

2015-09-15 04:41:00 -04:00
extends layout
block content
h1= title
table(id="example", class="table table-striped table-bordered", cellspacing="0", width="100%")
thead
tr
th Nom
th Durée
th Année
tbody
each video, i in videos
tr
td
a(href="/file/#{video.id}/#{video.filename}")= video.title
td= video.second
td= video.year
script.
$(document).ready(function() {
$('#example').DataTable();
});