2b72370c22771e0258cdbd88da872bab419e31a2
[project/luci.git] / modules / freifunk / luasrc / view / freifunk / adminindex.htm
1 <%+header%>
2 <%
3 local uci = require "luci.model.uci".cursor()
4 local contact = uci:get_all("freifunk", "contact")
5 local contacturl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "freifunk", "contact")
6 local hostname = uci:get_first ("system", "system", "hostname")
7 local latitude = uci:get_first ("system", "system", "latitude")
8 local longitude = uci:get_first ("system", "system", "longitude")
9 local location = uci:get_first ("system", "system", "location")
10 local basicsurl = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "freifunk", "basics")
11 %>
12
13 <h2><%:Freifunk Overview%></h2>
14
15 <%:These pages will assist you in setting up your router for Freifunk or similar wireless community networks.%>
16 <p />
17
18 <% if not (hostname and latitude and longitude and location) then%>
19 <div class="error">
20         <%:Basic settings are incomplete. Please go to%> <a href='<%=basicsurl%>'><%:Basic settings%></a> <%:and fill out all required fields.%>
21 </div>
22 <%end%>
23 <p />
24
25 <% if not (contact.nickname and contact.name and contact.mail) then%>
26 <div class="error">
27         <%:Contact information is incomplete. Please go to%> <a href='<%=contacturl%>'><%:Contact%></a> <%:and fill out all required fields.%>
28         <p />
29 </div>
30 <%end%>
31
32 <% uci:foreach("wireless", "wifi-device", function(section)
33         local device = section[".name"]
34         local url = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "network", "wireless")
35         if section.diversity ~= "0" and section.disabled ~= "1" then
36                 print('<div class="error">' .. translate("Diversity is enabled for device") .. ' <b>' .. device .. '</b>. '
37                 .. translate("Go to") .. ' <a href="' .. url .. '">' .. translate("wireless settings") .. '</a> ' ..
38                 translate(" to disable it.") .. '</div><p />')
39         end
40 end) %>
41
42 <%+footer%>