Merge pull request #1240 from bobmseagithub/luci-app-statistics_Voltage_graphs
[project/luci.git] / applications / luci-app-travelmate / luasrc / view / travelmate / stations.htm
1 <%#
2 Copyright 2017 Dirk Brenken (dev@brenken.org)
3 This is free software, licensed under the Apache License, Version 2.0
4 -%>
5
6
7 <%-
8 local write = io.write
9 local uci = require "luci.model.uci".cursor()
10 local trmiface = uci:get("travelmate", "global", "trm_iface") or "trm_wwan"
11 -%>
12
13 <%+header%>
14
15 <div class="cbi-map">
16 <h2 name="content"><%:Wireless Stations%></h2>
17 <div class="cbi-map-descr"><%:Provides an overview of all configured uplink interfaces for travelmate. You can edit and delete existing interfaces or scan for new uplinks.%></div>
18
19 <fieldset class="cbi-section">
20 <table class="cbi-section-table" style="empty-cells:hide">
21 <tr class="cbi-section-table-titles">
22 <th class="cbi-section-table-cell" style="text-align:left"><%:Device%></th>
23 <th class="cbi-section-table-cell" style="text-align:left"><%:Mode%></th>
24 <th class="cbi-section-table-cell" style="text-align:left"><%:Uplink Interface%></th>
25 <th class="cbi-section-table-cell" style="text-align:left"><%:SSID%></th>
26 <th class="cbi-section-table-cell" style="text-align:left"><%:Encryption%></th>
27 <th class="cbi-section-table-cell" style="text-align:left" colspan="2"><%:Disabled%></th>
28 </tr>
29 <%
30 uci:foreach("wireless", "wifi-iface", function(s)
31 local section = s['.name']
32 local device = s.device or ""
33 local mode = s.mode or ""
34 local iface = s.network or ""
35 local ssid = s.ssid or ""
36 local encryption = s.encryption or ""
37 local disabled = s.disabled or ""
38 if iface == trmiface then
39 %>
40 <tr class="cbi-section-table-row cbi-rowstyle-6">
41 <td style="text-align:left"><%=device%></td>
42 <td style="text-align:left"><%=mode%></td>
43 <td style="text-align:left"><%=iface%></td>
44 <td style="text-align:left"><%=ssid%></td>
45 <td style="text-align:left"><%=encryption%></td>
46 <td style="text-align:left"><%=disabled%></td>
47 <td class="cbi-value-field" style="width:200px;text-align:right">
48 <input type="button" class="cbi-button cbi-button-edit" style="width:85px" onclick="location.href='<%=url('admin/services/travelmate/wifiedit')%>?cfg=<%=section%>'" title="<%:Edit this Uplink%>" value="<%:Edit%>" />
49 <input type="button" class="cbi-button cbi-button-remove" style="width:85px" onclick="location.href='<%=url('admin/services/travelmate/wifidelete')%>?cfg=<%=section%>'" title="<%:Delete this Uplink%>" value="<%:Delete%>"/>
50 </td>
51 </tr>
52 <%
53 end
54 end)
55 %>
56 </table>
57 </fieldset>
58 <div class="cbi-page-actions right">
59 <%
60 uci:foreach("wireless", "wifi-device", function(s)
61 local device = s[".name"]
62 %>
63 <form class="inline" action="<%=url('admin/services/travelmate/wifiscan')%>" method="post">
64 <input type="hidden" name="device" value="<%=device%>" />
65 <input type="hidden" name="token" value="<%=token%>" />
66 <input type="submit" class="cbi-button cbi-button-find" style="width:110px" title="<%:Find and join network on %><%=device%>" value="<%:Scan %><%=device%>" />
67 </form>
68 <%
69 end)
70 %>
71 </div>
72
73 <%+footer%>