summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-compat/luasrc/view/cbi/tabcontainer.htm
blob: 7fcb83578306316349eec2a160dcc4d03ad411df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<% for _, tab in ipairs(self.tab_names) do data = self.tabs[tab] %>
	<div class="cbi-tabcontainer"<%=
		attr("id", "container.%s.%s.%s" %{ self.config, section, tab }) ..
		attr("data-tab", tab) ..
		attr("data-tab-title", data.title) ..
		attr("data-tab-active", tostring(tab == self.selected_tab))
	%>>
		<% if data.description then %>
			<div class="cbi-tab-descr"><%=data.description%></div>
		<% end %>

		<% self:render_tab(tab, section, scope or {}) %>
	</div>
<% end %>