I don’t know if you can really split in two different pages, but you can filter it and put in you overview graphic, this way you can split by models and add what you want.
Exemple:
In your case, you add Drytek and Teltonika and can filter if its online or not, like genie already do.
You cannot break out the devices by some identifier into different tabs without modifying the code.
You can however create a pie chart on the home page and clicking on the pie wedge will take you to the devices page pre-filtered by those devices.
You must refresh VirtualParameters.Model for all your devices in order for the chart to populate. The easiest way to accomplish this is edit the inform provision script and add this line: declare("VirtualParameters.Model", {value: 1});
//VirtualParameters.Model
const keys = [
'InternetGatewayDevice.DeviceInfo.ModelName',
'Device.DeviceInfo.ModelName'
];
return {writable: false, value: [getParameterValue(keys, ''), 'xsd:string']};
function getParameterValue(keys, def) {
for (let key of keys) {
let d = declare(key, {value: Date.now()});
for (let item of d) {
if (item.value && item.value[0]) {
return item.value[0];
}
}
}
return def;
}