Implement System interface

The system interface now holds system wide alerts and timeseries
This commit is contained in:
Emanuele Faranda 2019-06-03 08:53:26 +00:00 committed by GitHub
parent 8b8e201581
commit 5f9e8b17df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 179 additions and 48 deletions

View file

@ -21,7 +21,9 @@ if status == "engaged" then
engaged = true
end
interface.select(ifname)
if _GET["ifid"] ~= nil then
interface.select(_GET["ifid"])
end
if(tonumber(_GET["currentPage"]) == nil) then _GET["currentPage"] = 1 end
if(tonumber(_GET["perPage"]) == nil) then _GET["perPage"] = getDefaultTableSize() end