mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 15:09:33 +00:00
17 lines
No EOL
436 B
Lua
17 lines
No EOL
436 B
Lua
--
|
|
-- (C) 2017-24 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
local template_utils = require "template_utils"
|
|
local protos_utils = require "protos_utils"
|
|
|
|
local has_protos_file = protos_utils.hasProtosFile()
|
|
|
|
template_utils.render("pages/edit-applications.template", {
|
|
ifid = interface.getId(),
|
|
has_protos_file = has_protos_file,
|
|
}) |