summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2009-10-07 10:43:25 +0200
committerMika Havela <mika.havela@gmail.com>2009-10-07 10:43:25 +0200
commit6c05e313641c283de096777cc1126a098d0ed1aa (patch)
treee2d1eafbdf1aa845d6748285d098cc4b91a4b909
parent1c0053ed4c338bc2b1447785c8b616be4249e980 (diff)
downloadacf-core-6c05e313641c283de096777cc1126a098d0ed1aa.tar.bz2
acf-core-6c05e313641c283de096777cc1126a098d0ed1aa.tar.xz
Graphical fix. Now displaying logonstatus as other views.
-rw-r--r--app/acf-util/logon-status-html.lsp21
1 files changed, 13 insertions, 8 deletions
diff --git a/app/acf-util/logon-status-html.lsp b/app/acf-util/logon-status-html.lsp
index 753248f..be905f3 100644
--- a/app/acf-util/logon-status-html.lsp
+++ b/app/acf-util/logon-status-html.lsp
@@ -1,8 +1,13 @@
-<% local view= ... %>
-<% --[[
- io.write(html.cfe_unpack(view))
---]] %>
-<h1>User Status </h1>
-<p> Below is your current Session id <p>
-<%= html.html_escape(view.value.sessionid.value) %>
-<p>You are currently known to the system as <%= html.html_escape(view.value.username.value) %>.</p>
+<% local view = ... %>
+
+<h1>User Status</h1>
+
+<DL>
+
+<DT><%= html.html_escape(view.value.username.label) %></DT>
+<DD><%= html.html_escape(view.value.username.value) %></DD>
+
+<DT><%= html.html_escape(view.value.sessionid.label) %></DT>
+<DD><%= html.html_escape(view.value.sessionid.value) %></DD>
+
+</DL>