31 lines
728 B
Plaintext
31 lines
728 B
Plaintext
extends layout
|
|
|
|
block content
|
|
h1= title
|
|
|
|
a(href="/show_list/#{channel_id}") Retour à la liste des séries
|
|
br
|
|
br
|
|
|
|
table(id="example", class="table table-striped table-bordered", cellspacing="0", width="100%")
|
|
thead
|
|
tr
|
|
th Nom
|
|
th Saison & Episode
|
|
th Durée
|
|
tbody
|
|
each video, i in videos
|
|
tr
|
|
td
|
|
a(href="/movie/#{video.id}") #{video.titre}
|
|
td= video.season_episode
|
|
td= video.duree
|
|
script.
|
|
$(document).ready(function() {
|
|
$('#example').DataTable({
|
|
"language": {
|
|
"url": "//cdn.datatables.net/plug-ins/1.10.8/i18n/French.json"
|
|
}
|
|
});
|
|
});
|