Fixed a typo in button template
[project/luci.git] / libs / cbi / luasrc / view / cbi / map.htm
index 835393c..949edea 100644 (file)
@@ -1,6 +1,36 @@
-                       <div class="cbi-map" id="cbi-<%=self.config%>">
-                               <h1><%=self.title%></h1>
-                               <div class="cbi-map-descr"><%=self.description%></div>
-<% self:render_children() %>
-                               <br />
-                       </div>
+<%#
+LuCI - Lua Configuration Interface
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+-%>
+
+<div class="cbi-map" id="cbi-<%=self.config%>">
+       <h2><a id="content" name="content"><%=self.title%></a></h2>
+       <div class="cbi-map-descr"><%=self.description%></div>
+       <%- if self._apply then -%>
+               <fieldset class="cbi-section">
+                       <legend><%:cbi_applying%></legend>
+                       <ul class="cbi-apply"><%-
+                               local fp = self._apply()
+                               self._apply = nil
+                               local line = fp:read()
+                               while line do
+                                       write("<li>" .. luci.util.pcdata(line) .. "</li>\n")
+                                       line = fp:read()
+                               end
+                               fp:close()
+                       -%></ul>
+               </fieldset>
+       <%- end -%>
+       <%- self:render_children() %>
+       <br />
+</div>