plex-web-downloader/views/show.jade

31 lines
728 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
2015-10-07 12:16:39 -04:00
a(href="/show_list/#{channel_id}") Retour à la liste des séries
br
br
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-10-08 06:13:22 -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"
}
});
});