summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm
blob: 743886f88442252cbc06250e6ce3dcae406ca781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<%#
Copyright 2018 Dirk Brenken (dev@brenken.org)
This is free software, licensed under the Apache License, Version 2.0
-%>

<%-
local anonclass  = (not self.anonymous or self.sectiontitle) and "named" or "anonymous"
-%>

<%+banip/banip_css%>

<div class="cbi-section" id="cbi-<%=self.config%>-<%=self.sectiontype%>">
	<% if self.title then -%>
		<h3><%=self.title%></h3>
	<%- end %>
	<div class="cbi-section-descr"><%=self.description%></div>
	<div class="cbi-section-node">
		<div class="table cbi-section-table">
			<div class="tr cbi-section-table-titles <%=anonclass%>">
			<%- for i, k in pairs(self.children) do -%>
				<div class="th cbi-section-table-cell">
					<%-=k.title-%>
				</div>
			<%- end -%>
			</div>
			<%- local section, scope, isempty = true
				for i, k in ipairs(self:cfgsections()) do
					section = k
					local sectionname  = striptags((type(self.sectiontitle) == "function") and self:sectiontitle(section) or k)
					local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname)
					isempty = false
					scope = { valueheader = "cbi/cell_valueheader", valuefooter = "cbi/cell_valuefooter" }
			-%>
			<div class="tr cbi-section-table-row" id="cbi-<%=self.config%>-<%=section%>"<%=sectiontitle%>>
				<%-
					for k, node in ipairs(self.children) do
						node:render(section, scope or {})
					end
					if not scope.cbid:match("ban_src_cat") then
				-%>
					<div class="td cbi-value-field">&#160;</div>
				<%- end -%>
			</div>
			<%- end -%>
		</div>
	</div>
</div>