From fa0bd17a19e211fb331e5a0d6dd5398d2d3930f1 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Fri, 27 Sep 2013 03:28:54 +0000 Subject: Initial commit of ACF library for viewing/editing database entries Based on code from acf-kamailio --- db-listtables-html.lsp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 db-listtables-html.lsp (limited to 'db-listtables-html.lsp') diff --git a/db-listtables-html.lsp b/db-listtables-html.lsp new file mode 100644 index 0000000..fec3ac4 --- /dev/null +++ b/db-listtables-html.lsp @@ -0,0 +1,24 @@ +<% local form, viewlibrary, page_info, session = ... %> +<% require("htmlviewfunctions") %> +<% html = require("acf.html") %> + +<% htmlviewfunctions.displaycommandresults({"createdatabase"}, session) %> + +

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

+
+<% for i,table in ipairs(form.value) do %> +
  • + <% if viewlibrary.check_permission("viewtable") then %> + <%= html.link{value = "viewtable?table=" .. table, label=table} %> + <% else %> + <%= html.html_escape(table) %> + <% end %> +<% end %> +<% if #form.value == 0 and viewlibrary.check_permission("createdatabase") then %> +
    Create Database
    +
    "> +
    + + +<% end %> +
  • -- cgit v1.2.3