diff options
Diffstat (limited to 'apk-expert-html.lsp')
-rw-r--r-- | apk-expert-html.lsp | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/apk-expert-html.lsp b/apk-expert-html.lsp index 2256432..6dde79f 100644 --- a/apk-expert-html.lsp +++ b/apk-expert-html.lsp @@ -11,21 +11,23 @@ func(form, viewlibrary, page_info, session) %> <% if viewlibrary.check_permission("updateall") or viewlibrary.check_permission("upgradeall") then %> -<H2>Update / Upgrade</H2> -<DL> +<h2>Update / Upgrade</h2> <% if viewlibrary.check_permission("updateall") then %> - <DT>Update Index</DT> - <DD><form action="updateall" method="POST"> + <div class='item'><p class='left'>Update Index</p> + <div class='right'> + <form action="updateall" method="POST"> <input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" > <input class="submit" type="submit" name="submit" value="Update"> - </form></DD> + </form> + </div></div><!-- end .item --> <% end %> <% if viewlibrary.check_permission("upgradeall") then %> - <DT>Upgrade All</DT> - <DD><form action="upgradeall" method="POST"> + <div class='item'><p class='left'>Upgrade All</p> + <div class='right'> + <form action="upgradeall" method="POST"> <input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" > <input class="submit" type="submit" name="submit" value="Upgrade"> - </form></DD> + </form> + </div></div><!-- end .item --> <% end %> -</DL> <% end %> |