mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Add printNotes and fix table.merge on positional tables
This commit is contained in:
parent
3970e8cafe
commit
d20760327f
2 changed files with 28 additions and 4 deletions
|
|
@ -503,6 +503,18 @@ end
|
|||
|
||||
-- ########################################################
|
||||
|
||||
function printNotes(notes_items)
|
||||
print("<b>" .. i18n("notes").. "</b><ul>")
|
||||
|
||||
for _, note in ipairs(notes_items) do
|
||||
print("<li>" ..note .. "</li>")
|
||||
end
|
||||
|
||||
print("</ul>")
|
||||
end
|
||||
|
||||
-- ########################################################
|
||||
|
||||
function drawGraphs(ifid, schema, tags, zoomLevel, baseurl, selectedEpoch, options)
|
||||
local debug_rrd = false
|
||||
options = options or {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue