1
0
Fork 0
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:
Daniel Neto 2025-06-30 15:47:30 -03:00
parent 9823846552
commit be543ef59a

View file

@ -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,