reduire les doublons

This commit is contained in:
WEBER Antoine
2015-09-24 00:17:03 +02:00
parent 00952c81d7
commit 6cc56aef44
4 changed files with 24 additions and 23 deletions

View File

@@ -7,39 +7,20 @@ block content
thead
tr
th Nom
if(channel.type == 2)
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
if(channel.type == 2)
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"
}/*,
"columnDefs": [
{ "targets": 2,
"searchable": false,
"orderable": false,
}
]*/
//"dom": '<"toolbar">frtip'
}
});
});

View File

@@ -7,7 +7,9 @@ block content
p= movie.rating
label Télécharger
br
each file, i in movie.file
file.size
a(href="/file/#{file.id}/#{file.filename}")= file.filename
br