mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +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>When</th>
|
||||||
<th>Time</th>
|
<th>Time</th>
|
||||||
<th>Location</th>
|
<th>Location</th>
|
||||||
|
<th>Device</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
|
@ -97,6 +98,7 @@ $_page->loadBasicCSSAndJS();
|
||||||
<th>When</th>
|
<th>When</th>
|
||||||
<th>Time</th>
|
<th>Time</th>
|
||||||
<th>Location</th>
|
<th>Location</th>
|
||||||
|
<th>Device</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
|
@ -148,6 +150,12 @@ $_page->loadBasicCSSAndJS();
|
||||||
render: function(data, type, row) {
|
render: function(data, type, row) {
|
||||||
return row.location_name
|
return row.location_name
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
data: 'app',
|
||||||
|
render: function(data, type, row) {
|
||||||
|
return row.app
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
select: true,
|
select: true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue