<% local data, viewlibrary, page_info = ... --htmlviewfunctions = require("htmlviewfunctions") html = require("acf.html") %> <% viewlibrary.dispatch_component("status") %>

<%= html.html_escape(data.label) %>

<% if not data.value.show_isakmp or #data.value.show_isakmp.value == 0 then io.write("No status details available") else for i,entry in pairs(data.value.show_isakmp.value) do if (type(entry) == "table") and (entry.Destination) and (entry.Destination.value) and (#entry.Destination.value > 0) then io.write("

".. html.html_escape(entry.Destination.value) .. "

") io.write("\n") local tags = {"Created","Source","Destination", "St", "Phase2details"} for j,tag in pairs(tags) do io.write("") end io.write("
" .. html.html_escape(entry[tag].label) .. ""..string.gsub(html.html_escape(entry[tag].value), "\n", "
")) if (entry[tag].descr) and (#entry[tag].descr > 0) then io.write(" (".. html.html_escape(entry[tag].descr) .. ")") end io.write("
") end end end --htmlviewfunctions.displayitem(data.value.ip_xfrm_policy) %>