blob: 53c91ce7e9d9bbc93f7c48c59aa246539a212319 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<% local form, viewlibrary, page_info = ...
require("htmlviewfunctions")
html = require("acf.html")
%>
<H1><%= html.html_escape(form.label) %></H1>
<%
local order = {"clientuserid", "expiredatetime"}
htmlviewfunctions.displayform(form, order, nil, page_info)
%>
|