plex-web-downloader/views/show.jade

27 lines
641 B
Plaintext
Raw Normal View History

2015-09-23 18:30:10 -04:00
extends layout
block content
2015-09-24 12:11:02 -04:00
h1= 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-24 12:15:40 -04:00
th Saison & Episode
2015-09-23 18:30:10 -04:00
th Durée
tbody
each video, i in videos
tr
td
2015-09-23 19:05:13 -04:00
a(href="/movie/#{video.id}")= video.titre
2015-09-24 12:15:40 -04:00
td= video.season_episode
2015-09-23 18:30:10 -04:00
td= video.duree
script.
$(document).ready(function() {
$('#example').DataTable({
"language": {
"url": "//cdn.datatables.net/plug-ins/1.10.8/i18n/French.json"
}
});
});