summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base/luasrc/view/cbi/map.htm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/luci-base/luasrc/view/cbi/map.htm')
-rw-r--r--modules/luci-base/luasrc/view/cbi/map.htm40
1 files changed, 0 insertions, 40 deletions
diff --git a/modules/luci-base/luasrc/view/cbi/map.htm b/modules/luci-base/luasrc/view/cbi/map.htm
deleted file mode 100644
index cda4d3530..000000000
--- a/modules/luci-base/luasrc/view/cbi/map.htm
+++ /dev/null
@@ -1,40 +0,0 @@
-<%- if firstmap and messages then local msg; for _, msg in ipairs(messages) do -%>
- <div class="alert-message warning"><%=pcdata(msg)%></div>
-<%- end end -%>
-
-<div class="cbi-map" id="cbi-<%=self.config%>">
- <% if self.title and #self.title > 0 then %>
- <h2 name="content"><%=self.title%></h2>
- <% end %>
- <% if self.description and #self.description > 0 then %>
- <div class="cbi-map-descr"><%=self.description%></div>
- <% end %>
- <% if self.tabbed then %>
- <div>
- <% for i, section in ipairs(self.children) do
- tab = section.section or section.sectiontype %>
- <div class="cbi-tabcontainer"<%=
- attr("id", "container.m-%s.%s" %{ self.config, tab }) ..
- attr("data-tab", tab) ..
- attr("data-tab-title", section.title or tab)
- %>>
- <% section:render() %>
- </div>
- <% end %>
- </div>
-
- <% if not self.save then -%>
- <div class="cbi-section-error">
- <% for _, section in ipairs(self.children) do %>
- <% if section.error and section.error[section.section] then -%>
- <ul><li>
- <%:One or more invalid/required values on tab%>:&nbsp;<%=section.title or section.section or section.sectiontype%>
- </li></ul>
- <%- end %>
- <% end %>
- </div>
- <%- end %>
- <% else %>
- <%- self:render_children() %>
- <% end %>
-</div>