summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--heimdal-klist-html.lsp5
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 13f1080..fd9d2d4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
APP_NAME=heimdal
PACKAGE=acf-$(APP_NAME)
-VERSION=0.1.0
+VERSION=0.1.1
APP_DIST=\
heimdal* \
diff --git a/heimdal-klist-html.lsp b/heimdal-klist-html.lsp
index c6997ff..67175b0 100644
--- a/heimdal-klist-html.lsp
+++ b/heimdal-klist-html.lsp
@@ -5,19 +5,20 @@
<% displaycommandresults({"kinit"}, session, true) %>
<H1><%= data.label %></H1>
+<DL>
<pre>
<%= html.html_escape(data.value) %>
</pre>
<% if viewlibrary and viewlibrary.dispatch_component and session.permissions[page_info.controller].kdestroy then %>
-<DL>
<form action="<%= html.html_escape(page_info.script .. page_info.prefix .. page_info.controller .. "/kdestroy") %>">
<DT>Destroy Tickets</DT>
<DD><input class="submit" type="submit" value="Destroy"></DD>
</form>
-</DL>
<% end %>
+</DL>
+
<% if viewlibrary and viewlibrary.dispatch_component and session.permissions[page_info.controller].kinit then
viewlibrary.dispatch_component("kinit")
end %>