summaryrefslogtreecommitdiffstats
path: root/rrdtool-newgraphcfg-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'rrdtool-newgraphcfg-html.lsp')
-rwxr-xr-xrrdtool-newgraphcfg-html.lsp24
1 files changed, 11 insertions, 13 deletions
diff --git a/rrdtool-newgraphcfg-html.lsp b/rrdtool-newgraphcfg-html.lsp
index 5371cf8..9da49b3 100755
--- a/rrdtool-newgraphcfg-html.lsp
+++ b/rrdtool-newgraphcfg-html.lsp
@@ -2,30 +2,28 @@
<% htmlviewfunctions = require("htmlviewfunctions") %>
<% html = require("acf.html") %>
-<H1>Create new rrdtool-graph file</H1>
+<h1>Create new rrdtool-graph file</h1>
<% if form.type == "form" then %>
<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
<% htmlviewfunctions.displayformstart(form) %>
-<H3>File Details</H3>
-<DL>
-<DT><% io.write(form.value.filename.label) %></DT>
-<DD>
+<h3>File Details</h3>
+<div class='item'><p class='left'><% io.write(form.value.filename.label) %></p>
+<div class='right'>
<input class="text" type="text" name="filename" value="<%= html.html_escape(form.value.filename.value) %>">
-<% if form.value.filename.errtxt then %><P CLASS='error'><%= string.gsub(html.html_escape(form.value.filename.errtxt), "\n", "<BR>") %></P><% end %>
-<% if form.value.filename.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filename.descr), "\n", "<BR>") %></P><% end %>
-</DD>
-</DL>
+<% if form.value.filename.errtxt then %><p class='error'><%= string.gsub(html.html_escape(form.value.filename.errtxt), "\n", "<br/>") %></p><% end %>
+<% if form.value.filename.descr then %><p class='descr'><%= string.gsub(html.html_escape(form.value.filename.descr), "\n", "<br/>") %></p><% end %>
+</div></div><!-- end .item -->
<% end %>
-<H3>File Content</H3>
+<h3>File Content</h3>
<textarea name="filecontent">
<%= html.html_escape(form.value.filecontent.value) %>
</textarea>
-<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<BR>") %></P><% end %>
-<% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<BR>") %></P><% end %>
+<% if form.value.filecontent.errtxt then %><p class='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<br/>") %></p><% end %>
+<% if form.value.filecontent.descr then %><p class='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<br/>") %></p><% end %>
<% if form.type == "form" then %>
-<H3>Save</H3>
+<h3>Save</h3>
<% htmlviewfunctions.displayformend(form) %>
<% end %>
</form>