2015-09-23 16:32:17 -04:00
|
|
|
extends layout
|
|
|
|
|
|
|
|
block content
|
|
|
|
h1= title
|
|
|
|
|
|
|
|
table(id="example", class="table table-striped table-bordered", cellspacing="0", width="100%")
|
|
|
|
thead
|
|
|
|
tr
|
2017-09-27 08:11:26 -04:00
|
|
|
th Series
|
|
|
|
th Year
|
2015-09-23 16:32:17 -04:00
|
|
|
tbody
|
|
|
|
each show, i in shows
|
|
|
|
tr
|
|
|
|
td
|
2017-09-27 08:11:26 -04:00
|
|
|
a(href="/pwd/show/#{show.id}/#{channel_id}")= show.title
|
2015-09-23 16:32:17 -04:00
|
|
|
td= show.year
|
|
|
|
script.
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('#example').DataTable({
|
|
|
|
"language": {
|
2017-09-27 08:11:26 -04:00
|
|
|
"url": "//cdn.datatables.net/plug-ins/1.10.8/i18n/English.json"
|
2015-09-23 16:32:17 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|