blob: 9be71b93071b9252da41dd942da7f71232d9a413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<% local data, viewlibrary = ...
htmlviewfunctions = require("htmlviewfunctions")
html = require("acf.html")
%>
<% if viewlibrary and viewlibrary.dispatch_component then
viewlibrary.dispatch_component("status")
end %>
<H2><%= html.html_escape(data.label) %></H2>
<DL>
<%
htmlviewfunctions.displayitem(data.value.date)
htmlviewfunctions.displayitem(data.value.timechanged)
%>
</DL>
|