2009-08-16 03:29:46 +00:00
< %- if self.tabs then %>
< ul class = "cbi-tabmenu" >
< %- self.selected_tab = luci.http.formvalue("tab." .. self.config .. "." .. section) %>
< %- for _, tab in ipairs(self.tab_names) do if #self.tabs[tab].childs > 0 then %>
< %- if not self.selected_tab then self.selected_tab = tab end %>
< li id = "tab.<%=self.config%>.<%=section%>.<%=tab%>" class = "cbi-tab<%=(tab == self.selected_tab) and '' or '-disabled'%>" >
< a onclick = "this.blur(); return cbi_t_switch('<%=self.config%>.<%=section%>', '<%=tab%>')" href = "<%=REQUEST_URI%>?tab.<%=self.config%>.<%=section%>=<%=tab%>" > < %=self.tabs[tab].title%>< / a >
2009-08-20 01:53:24 +00:00
< % if tab == self.selected_tab then %>< input type = "hidden" id = "tab.<%=self.config%>.<%=section%>" name = "tab.<%=self.config%>.<%=section%>" value = "<%=tab%>" / > < % end %>
2009-08-16 03:29:46 +00:00
< / li >
< % end end -%>
< / ul >
< % end -%>