mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
Add 'Device' column to Video Views Info table and render app data
This commit is contained in:
parent
9823846552
commit
be543ef59a
1 changed files with 9 additions and 1 deletions
|
@ -89,6 +89,7 @@ $_page->loadBasicCSSAndJS();
|
|||
<th>When</th>
|
||||
<th>Time</th>
|
||||
<th>Location</th>
|
||||
<th>Device</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
|
@ -97,6 +98,7 @@ $_page->loadBasicCSSAndJS();
|
|||
<th>When</th>
|
||||
<th>Time</th>
|
||||
<th>Location</th>
|
||||
<th>Device</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
@ -148,6 +150,12 @@ $_page->loadBasicCSSAndJS();
|
|||
render: function(data, type, row) {
|
||||
return row.location_name
|
||||
}
|
||||
},
|
||||
{
|
||||
data: 'app',
|
||||
render: function(data, type, row) {
|
||||
return row.app
|
||||
}
|
||||
}
|
||||
],
|
||||
select: true,
|
||||
|
@ -159,4 +167,4 @@ $_page->loadBasicCSSAndJS();
|
|||
</script>
|
||||
<?php
|
||||
$_page->print();
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue