%@ page contentType="text/html; charset=utf-8" language="java"%> <%@ page import="java.util.List" %> <%@ page import="uk.ac.ox.oerc.wol.schema.Gateway" %>
<% List authorizedGateways = (List)session.getAttribute("authorizedGateways"); if(authorizedGateways.size() == 0){ %> Sorry, you do not have any local subnets to view. <% }else{ %> Please select the subnet you want to query. SELECTGATEWAYSUBNET <% String checked = null; for (int i = 0; i < authorizedGateways.size(); i++){ if(i == 0){ checked="CHECKED"; } else{ checked = null; } out.println("" + authorizedGateways.get(i).getIpaddr() +"" + authorizedGateways.get(i).getName()+""); } %> Get the chart! <% } %>
<% }else{ %> Please select the subnet you want to query.
Get the chart! <% } %>