oh hai
<%= link_to "all licenses", v1_licenses_path %>
Licenses
<% @licenses.each do |license| %>
- <%= link_to "license #{license.id}", v1_license_path(license) %>
<% end %>
Companies
<% @companies.each do |company| %>
-
<%= company.name %>
-
<%= link_to "active", v1_company_licenses_path(company) %>
<% @locations.each do |location| %>
- <%= link_to location.township, v1_company_licenses_path(company, status: "active", township: location.township) %>
<% end %>
-
<%= link_to "expired", v1_company_licenses_path(company, status: "expired") %>
<% @locations.each do |location| %>
- <%= link_to location.township, v1_company_licenses_path(company, status: "expired", township: location.township) %>
<% end %>
-
<%= link_to "confidential", v1_company_licenses_path(company, status: "confidential") %>
<% @locations.each do |location| %>
- <%= link_to location.township, v1_company_licenses_path(company, status: "confidential", township: location.township) %>
<% end %>
<% end %>