mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 11:01:50 +00:00
53 lines
2.8 KiB
HTML
53 lines
2.8 KiB
HTML
<div class="cbi-section-node">
|
|
<div class="table">
|
|
<%
|
|
for i, net in ipairs(self.netlist) do
|
|
local z = net[3]
|
|
local c = z and z:get_color() or "#EEEEEE"
|
|
local t = z and translate("Part of zone %q") % z:name() or translate("No zone assigned")
|
|
local disabled = (net[4]:get("auto") == "0")
|
|
local dynamic = net[4]:is_dynamic()
|
|
%>
|
|
<div class="tr cbi-rowstyle-<%=i % 2 + 1%>">
|
|
<div class="td col-3 center middle">
|
|
<div class="ifacebox">
|
|
<div class="ifacebox-head" style="background-color:<%=c%>" title="<%=pcdata(t)%>">
|
|
<strong><%=net[1]:upper()%></strong>
|
|
</div>
|
|
<div class="ifacebox-body" id="<%=net[1]%>-ifc-devices" data-network="<%=net[1]%>">
|
|
<img src="<%=resource%>/icons/ethernet_disabled.png" style="width:16px; height:16px" /><br />
|
|
<small>?</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="td col-5 left middle" id="<%=net[1]%>-ifc-description">
|
|
<em><%:Collecting data...%></em>
|
|
</div>
|
|
<div class="td cbi-section-actions">
|
|
<div>
|
|
<input type="button" class="cbi-button cbi-button-neutral" onclick="iface_reconnect('<%=net[1]%>')" title="<%:Reconnect this interface%>" value="<%:Restart%>"<%=ifattr(disabled or dynamic, "disabled", "disabled")%> />
|
|
|
|
<% if disabled then %>
|
|
<input type="hidden" name="cbid.network.<%=net[1]%>.__disable__" value="1" />
|
|
<input type="submit" name="cbi.apply" class="cbi-button cbi-button-neutral" onclick="this.previousElementSibling.value='0'" title="<%:Reconnect this interface%>" value="<%:Connect%>"<%=ifattr(dynamic, "disabled", "disabled")%> />
|
|
<% else %>
|
|
<input type="hidden" name="cbid.network.<%=net[1]%>.__disable__" value="0" />
|
|
<input type="submit" name="cbi.apply" class="cbi-button cbi-button-neutral" onclick="this.previousElementSibling.value='1'" title="<%:Shutdown this interface%>" value="<%:Stop%>"<%=ifattr(dynamic, "disabled", "disabled")%> />
|
|
<% end %>
|
|
|
|
<input type="button" class="cbi-button cbi-button-action important" onclick="location.href='<%=url("admin/network/network", net[1])%>'" title="<%:Edit this interface%>" value="<%:Edit%>" id="<%=net[1]%>-ifc-edit"<%=ifattr(dynamic, "disabled", "disabled")%> />
|
|
|
|
<input type="hidden" name="cbid.network.<%=net[1]%>.__delete__" value="" />
|
|
<input type="submit" name="cbi.apply" class="cbi-button cbi-button-negative" onclick="iface_delete(event)" value="<%:Delete%>"<%=ifattr(dynamic, "disabled", "disabled")%> />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cbi-section-create">
|
|
<input type="button" class="cbi-button cbi-button-add" value="<%:Add new interface...%>" onclick="location.href='<%=url("admin/network/iface_add")%>'" />
|
|
</div>
|
|
|
|
<script type="text/javascript" src="<%=resource%>/view/network/network.js"></script>
|