show page

This commit is contained in:
WEBER Antoine 2015-09-24 00:30:10 +02:00
parent b3f52b7cf0
commit ba62442238
1 changed files with 36 additions and 0 deletions

36
views/show.jade Normal file
View File

@ -0,0 +1,36 @@
extends layout
block content
h1= channel.name
table(id="example", class="table table-striped table-bordered", cellspacing="0", width="100%")
thead
tr
th Nom
th Série
th Saison & Episode
th Durée
th Année
th Taille
tbody
each video, i in videos
tr
td
a(href="/movie/#{video.id}")= video.title
td
if(typeof video.info_meta !== 'undefined' && typeof video.info_meta.show !== 'undefined')
| #{video.info_meta.show}
td
if(typeof video.season_episode !== 'undefined')
| #{video.season_episode}
td= video.duree
td= video.year
td= video.size
script.
$(document).ready(function() {
$('#example').DataTable({
"language": {
"url": "//cdn.datatables.net/plug-ins/1.10.8/i18n/French.json"
}
});
});