Merge pull request #1933 from Ansuel/hostname_upnp
[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
15 <div class="cbi-map">
16 <div class="cbi-map-descr">
17   <%=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)%>
18 </div>
19
20 <div class="cbi-section">
21   <div class="table cbi-section-table">
22     <div class="tr cbi-section-table-titles">
23       <div class="th left"><%:Device%></div>
24       <div class="th left"><%:SSID%></div>
25       <div class="th left"><%:BSSID%></div>
26       <div class="th left"><%:Encryption%></div>
27       <div class="th center">&#160;</div>
28     </div>
29 <%
30   uci:foreach("wireless", "wifi-iface", function(s)
31     local iface = s.network or ""
32     if iface == trmiface then
33       local section = s['.name'] or ""
34       local device = s.device or "-"
35       local ssid = s.ssid or "-"
36       local bssid = s.bssid or "-"
37       local encryption = s.encryption or "-"
38       local disabled = s.disabled or ""
39       local style = "text-align:left;color:#000000"
40       if disabled == "0" then
41         style = "text-align:left;color:#0069d6;font-weight:bold"
42       end
43 %>
44     <div class="tr cbi-section-table-row cbi-rowstyle-1" style="<%=style%>">
45       <div class="td" style="<%=style%>"><%=device%></div>
46       <div class="td" style="<%=style%>"><%=ssid%></div>
47       <div class="td" style="<%=style%>"><%=bssid%></div>
48       <div class="td" style="<%=style%>"><%=encryption%></div>
49       <div class="td cbi-section-actions">
50         <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%>"/>
51         <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%>"/>
52         <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%>"/>
53         <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%>"/>
54       </div>
55     </div>
56 <%
57     end
58   end)
59 %>
60   </div>
61 </div>
62 <div class="cbi-page-actions right">
63 <%
64   uci:foreach("wireless", "wifi-device", function(s)
65     local device = s[".name"]
66 %>
67   <form class="inline" action="<%=luci.dispatcher.build_url('admin/services/travelmate/wifiscan')%>" method="post">
68     <input type="hidden" name="device" value="<%=device%>"/>
69     <input type="hidden" name="token" value="<%=token%>"/>
70     <input type="submit" class="cbi-button cbi-button-action important" title="<%:Find and join network on%> <%=device%>" value="<%:Scan%> <%=device%>"/>
71   </form>
72 <%
73   end)
74 %>
75 </div>
76 </div>
77
78 <%+footer%>