mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
14 lines
478 B
HTML
14 lines
478 B
HTML
<% 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 %>
|