blob: b9ec189f0125492e5ab2d6b50eecef7dcceccfa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<% local data, viewlibrary = ...
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>
|