2015-09-15 04:41:00 -04:00
|
|
|
extends layout
|
|
|
|
|
|
|
|
block content
|
2015-09-15 11:21:39 -04:00
|
|
|
h1= channel.name
|
2015-09-15 04:41:00 -04:00
|
|
|
|
|
|
|
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
|
2015-10-08 06:14:53 -04:00
|
|
|
a(href="/movie/#{video.id}") #{video.title}
|
2015-09-22 09:50:53 -04:00
|
|
|
td= video.duree
|
2015-09-15 04:41:00 -04:00
|
|
|
td= video.year
|
|
|
|
script.
|
|
|
|
$(document).ready(function() {
|
2015-09-22 10:10:10 -04:00
|
|
|
$('#example').DataTable({
|
|
|
|
"language": {
|
|
|
|
"url": "//cdn.datatables.net/plug-ins/1.10.8/i18n/French.json"
|
2015-09-23 18:17:03 -04:00
|
|
|
}
|
2015-09-22 10:10:10 -04:00
|
|
|
});
|
2015-09-15 04:41:00 -04:00
|
|
|
});
|