Add alias and device type columns to host pools (#953)

* Add alias and device type columns to host pools

* Add host pool members links when available

* Add host pool links

* Implement host pool members pagination

* Host Pools GUI fixes and improvements

* Remove hardcoded columns number

* Host Pools GUI fixes

* Remove debug print
This commit is contained in:
Emanuele Faranda 2017-01-27 17:48:58 +01:00 committed by simonemainardi
parent f711ab555b
commit 2a843966da
10 changed files with 332 additions and 147 deletions

View file

@ -22,8 +22,7 @@ end
function expandIpV4Network(net)
local prefix = tonumber(net:match("/(.+)"))
local address = net:gsub("/.+","")
local address, prefix = splitNetworkPrefix(net)
if(prefix == nil or prefix > 32 or prefix <= 0) then prefix = 32 end