summaryrefslogtreecommitdiffstats
path: root/kamailio-listtables-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2011-01-08 20:30:37 +0000
committerTed Trask <ttrask01@yahoo.com>2011-01-08 20:30:37 +0000
commit802b8d7fe548afad99235db73b9c7ffea64c011b (patch)
treea1d64e28d450aa61e6fdefa9565e79b28e36d1bf /kamailio-listtables-html.lsp
parent7737dbd5def8fe3f38553e6e5c91bfc389fcae64 (diff)
downloadacf-kamailio-802b8d7fe548afad99235db73b9c7ffea64c011b.tar.bz2
acf-kamailio-802b8d7fe548afad99235db73b9c7ffea64c011b.tar.xz
Added createdatabase action.
Diffstat (limited to 'kamailio-listtables-html.lsp')
-rw-r--r--kamailio-listtables-html.lsp9
1 files changed, 9 insertions, 0 deletions
diff --git a/kamailio-listtables-html.lsp b/kamailio-listtables-html.lsp
index 6a117e4..49aebc2 100644
--- a/kamailio-listtables-html.lsp
+++ b/kamailio-listtables-html.lsp
@@ -1,6 +1,8 @@
<% local form, viewlibrary, page_info, session = ... %>
<% require("viewfunctions") %>
+<% displaycommandresults({"createdatabase"}, session) %>
+
<H1><%= html.html_escape(form.label) %></H1>
<DL>
<% for i,table in ipairs(form.value) do %>
@@ -11,4 +13,11 @@
<%= html.html_escape(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>