plex-web-downloader/views/show.jade

31 lines
718 B
Plaintext
Raw Normal View History

2015-09-23 18:30:10 -04:00
extends layout
block content
2015-09-23 19:05:13 -04:00
h1= show.title
2015-09-23 18:30:10 -04:00
table(id="example", class="table table-striped table-bordered", cellspacing="0", width="100%")
thead
tr
th Nom
2015-09-23 19:05:13 -04:00
th Saison
th Episode
2015-09-23 18:30:10 -04:00
th Durée
th Année
tbody
each video, i in videos
tr
td
2015-09-23 19:05:13 -04:00
a(href="/movie/#{video.id}")= video.titre
td= video.saison
td= video.episode
2015-09-23 18:30:10 -04:00
td= video.duree
td= video.year
script.
$(document).ready(function() {
$('#example').DataTable({
"language": {
"url": "//cdn.datatables.net/plug-ins/1.10.8/i18n/French.json"
}
});
});