Merge pull request #1906 from ldir-EDB0/typofix
[oweals/luci.git] / applications / luci-app-travelmate / luasrc / view / travelmate / stations.htm
1 <%#
2 Copyright 2017-2018 Dirk Brenken (dev@brenken.org)
3 This is free software, licensed under the Apache License, Version 2.0
4 -%>
5
6 <%-
7   local write    = io.write
8   local uci      = require("luci.model.uci").cursor()
9   local trmiface = uci:get("travelmate", "global", "trm_iface") or "trm_wwan"
10 -%>
11
12 <%+header%>
13
14 <script type="text/javascript" src="<%=resource%>/cbi.js"></script>
15
16 <div class="cbi-map">
17 <div class="cbi-map-descr">
18   <%=translatef("Provides an overview of all configured uplinks for the travelmate interface (%s). You can edit, delete or re-order existing uplinks or scan for a new one. The currently used uplink is emphasized in blue.", trmiface)%>
19 </div>
20
21 <div class="cbi-section">
22   <div class="table cbi-section-table">
23     <div class="tr cbi-section-table-titles">
24       <div class="th left"><%:Device%></div>
25       <div class="th left"><%:SSID%></div>
26       <div class="th left"><%:BSSID%></div>
27       <div class="th left"><%:Encryption%></div>
28       <div class="th center">&#160;</div>
29     </div>
30 <%
31   uci:foreach("wireless", "wifi-iface", function(s)
32     local iface = s.network or ""
33     if iface == trmiface then
34       local section = s['.name'] or ""
35       local device = s.device or "-"
36       local ssid = s.ssid or "-"
37       local bssid = s.bssid or "-"
38       local encryption = s.encryption or "-"
39       local disabled = s.disabled or ""
40       local style = "text-align:left;color:#000000"
41       if disabled == "0" then
42         style = "text-align:left;color:#0069d6;font-weight:bold"
43       end
44 %>
45     <div class="tr cbi-section-table-row cbi-rowstyle-1" style="<%=style%>">
46       <div class="td" style="<%=style%>"><%=device%></div>
47       <div class="td" style="<%=style%>"><%=ssid%></div>
48       <div class="td" style="<%=style%>"><%=bssid%></div>
49       <div class="td" style="<%=style%>"><%=encryption%></div>
50       <div class="td cbi-section-actions">
51         <input class="cbi-button cbi-button-up" type="button" value="<%:Up%>" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifiorder')%>?cfg=<%=section%>&amp;dir=up'" alt="<%:Move up%>" title="<%:Move up%>"/>
52         <input class="cbi-button cbi-button-down" type="button" value="<%:Down%>" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifiorder')%>?cfg=<%=section%>&amp;dir=down'" alt="<%:Move down%>" title="<%:Move down%>"/>
53         <input type="button" class="cbi-button cbi-button-edit" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifiedit')%>?cfg=<%=section%>'" title="<%:Edit this Uplink%>" value="<%:Edit%>"/>
54         <input type="button" class="cbi-button cbi-button-remove" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifidelete')%>?cfg=<%=section%>'" title="<%:Delete this Uplink%>" value="<%:Delete%>"/>
55       </div>
56     </div>
57 <%
58     end
59   end)
60 %>
61   </div>
62 </div>
63 <div class="cbi-page-actions right">
64 <%
65   uci:foreach("wireless", "wifi-device", function(s)
66     local device = s[".name"]
67 %>
68   <form class="inline" action="<%=luci.dispatcher.build_url('admin/services/travelmate/wifiscan')%>" method="post">
69     <input type="hidden" name="device" value="<%=device%>"/>
70     <input type="hidden" name="token" value="<%=token%>"/>
71     <input type="submit" class="cbi-button cbi-button-action important" title="<%:Find and join network on%> <%=device%>" value="<%:Scan%> <%=device%>"/>
72   </form>
73 <%
74   end)
75 %>
76 </div>
77 </div>
78
79 <%+footer%>