1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-13 11:01:50 +00:00
openmptcprouter-feeds/luci-app-omr-quota/luasrc/view/omr-quota/cbi-select-add.htm

11 lines
521 B
HTML
Raw Normal View History

2018-03-12 16:02:30 +00:00
<div class="cbi-section-create">
<% if self.invalid_cts then -%><div class="cbi-section-error"><% end %>
<select class="cbi-section-create-name" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>.select">
<%- for k, v in luci.util.kspairs(self.add_select_options) do %>
2020-07-29 08:55:30 +00:00
<option value="<%=k%>"><%=luci.xml.pcdata(v)%></option>
2018-03-12 16:02:30 +00:00
<% end -%>
</select>
<input class="cbi-button cbi-button-add" type="submit" value="<%:Add%>" title="<%:Add%>" />
<% if self.invalid_cts then %><br /><%:Invalid%></div><% end %>
</div>