summaryrefslogtreecommitdiffstats
path: root/kamailio-listtables-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'kamailio-listtables-html.lsp')
-rw-r--r--kamailio-listtables-html.lsp27
1 files changed, 27 insertions, 0 deletions
diff --git a/kamailio-listtables-html.lsp b/kamailio-listtables-html.lsp
new file mode 100644
index 0000000..38dd4f0
--- /dev/null
+++ b/kamailio-listtables-html.lsp
@@ -0,0 +1,27 @@
+<% local form, viewlibrary, page_info, session = ... %>
+<% require("viewfunctions") %>
+
+<% displaycommandresults({"createdatabase"}, session) %>
+
+<H1><%= html.html_escape(form.label) %></H1>
+<DL>
+<% for i,v in ipairs(form.value) do %>
+ <li>
+ <% if viewlibrary.check_permission("viewtable") then %>
+ <% if v.schema ~= "public" then %>
+ <%= html.link{value = "viewtable?table=" .. v.table .. "&schema=" .. v.schema, label="("..v.schema..") "..v.table} %>
+ <% else %>
+ <%= html.link{value = "viewtable?table=" .. v.table, label=v.table} %>
+ <% end %>
+ <% else %>
+ <%= html.html_escape("("..v.schema..") "..v.table) %>
+ <% end %>
+<% end %>
+<% if #form.value == 0 and viewlibrary.check_permission("createdatabase") then %>
+<DT>Create Database</DT><DD>
+<form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/createdatabase") %>">
+<input class="submit" type="submit" value="Create"></DD>
+</form>
+</DD>
+<% end %>
+</DL>