summaryrefslogtreecommitdiffstats
path: root/kamailio-listtables-html.lsp
blob: 6a117e432796c9f045b27971ce20edc30e98fdb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<% local form, viewlibrary, page_info, session = ... %>
<% require("viewfunctions") %>

<H1><%= html.html_escape(form.label) %></H1>
<DL>
<% for i,table in ipairs(form.value) do %>
	<li>
	<% if viewlibrary.check_permission("viewtable") then %>
		<%= html.link{value = "viewtable?table=" .. table, label=table} %>
	<% else %>
		<%= html.html_escape(table) %>
	<% end %>
<% end %>
</DL>