NOTE: Only the AP having firmware version 2.0.2.23 and greater will work in this functionality
<%unless @existing_static_routes.blank?%>

Static Route List <%= link_to " Create New Static Route".html_safe, new_static_route_path, :class=>"btn btn-info" %>

<%@existing_static_routes.each do |x|%> <% arr = x.tagging_lists.split("&&") unless x.tagging_lists.blank?%> <%end%>
Routing Name Network / AP Action
<%=x.routing_name%> <% x.config_mappings.each do |list|%> <% unless list.resourceable.blank?%> <%name,path,title = show_tags(list,:static_routes) %> <%= link_to name, path ,:class=>"label label-primary",:title => title%>   <% end %> <% end %> <%= link_to 'Show', x ,:class=>" label label-success"%> <%= link_to 'Edit', edit_static_route_path(x) ,:class=>"label label-info"%> <%= link_to 'Destroy', x, method: :delete, data: { confirm: 'Are you sure you want to delete?' }, :class=>"label label-danger" %>
<%end%>