Sha256: 688cd0a7622630a344778d7ab85b366edc0fa35f866ee49a222883e4c101f619

Contents?: true

Size: 1.08 KB

Versions: 7

Compression:

Stored size: 1.08 KB

Contents

<%
  zcta ||= nil
  overlap = (zcta)
%>

<table class="table table-striped sortable">
  <thead>
    <tr>
      <th>GEOID</th>
      <th>Name</th>
      <th>Primary County</th>
      <th>FIPS Class Code</th>

      <%= demographics_headers %>

      <% if overlap %>
        <th class="text-end">Overlap</th>
      <% end %>
    </th>
  </thead>
  <tbody>
    <% places.each do |place| %>
      <tr>
        <td><%= place.geoid %></td>
        <td><%= link_to place.name, place_path(place, breadcrumb_params) %></td>
        <td>
          <% if place.primary_county %>
            <%= link_to place.primary_county.full_name, county_path(place.primary_county, breadcrumb_params) %>
          <% else %>
            -
          <% end %>
        </td>
        <td><%= place.fips_class_code %></td>

        <%= demographics_cells(place, round_area: 1) %>

        <% if overlap %>
          <td class="text-end">
            <% if zcta %>
              <%= overlap_percentage(zcta, place, :zcta_places) %>
            <% end %>
          </td>
        <% end %>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
us_geo-2.1.1 explorer_app/app/views/places/_table.html.erb
us_geo-2.1.0 explorer_app/app/views/places/_table.html.erb
us_geo-2.0.4 explorer_app/app/views/places/_table.html.erb
us_geo-2.0.3 explorer_app/app/views/places/_table.html.erb
us_geo-2.0.2 explorer_app/app/views/places/_table.html.erb
us_geo-2.0.1 explorer_app/app/views/places/_table.html.erb
us_geo-2.0.0 explorer_app/app/views/places/_table.html.erb