mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
13 lines
385 B
HTML
13 lines
385 B
HTML
<%+cbi/valueheader%>
|
|
<% if self.href then %><a href="<%=self.href%>"><% end -%>
|
|
<%
|
|
local val = self:cfgvalue(section) or self.default or ""
|
|
if not self.rawhtml then
|
|
write(pcdata(val))
|
|
else
|
|
write(val)
|
|
end
|
|
%>
|
|
<%- if self.href then %></a><%end%>
|
|
<input type="hidden" id="<%=cbid%>" value="<%=pcdata(self:cfgvalue(section) or self.default or "")%>" />
|
|
<%+cbi/valuefooter%>
|