Sha256: ce36a17d4756b7f2b8143fabc805d6e43fdece9a4186e0cb8da42f2997c54e49

Contents?: true

Size: 1.27 KB

Versions: 7

Compression:

Stored size: 1.27 KB

Contents

<table class="table table-striped sortable">
  <thead>
    <tr>
      <th>GEOID</th>
      <th>Name</th>
      <th>Type</th>
      <% unless defined?(combined_statistical_area) && combined_statistical_area %>
        <th>Combined Statistical Area</th>
      <% end %>
      <%= demographics_headers %>
    </th>
  </thead>
  <tbody>
    <% core_based_statistical_areas.each do |core_based_statistical_area| %>
      <tr>
        <td><%= core_based_statistical_area.geoid %></td>
        <td><%= link_to core_based_statistical_area.name, core_based_statistical_area_path(core_based_statistical_area, breadcrumb_params) %></td>
        <td><%= core_based_statistical_area.metropolitan? ? "Metropolitan" : "Micropolitan" %> Area</td>
        <% unless defined?(combined_statistical_area) && combined_statistical_area %>
          <td>
            <% if core_based_statistical_area.combined_statistical_area %>
              <%= link_to core_based_statistical_area.combined_statistical_area.name, combined_statistical_area_path(core_based_statistical_area.combined_statistical_area) %>
            <% else %>
              -
            <% end %>
          </td>
        <% end %>
        <%= demographics_cells(core_based_statistical_area, round_area: 0) %>
      </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/core_based_statistical_areas/_table.html.erb
us_geo-2.1.0 explorer_app/app/views/core_based_statistical_areas/_table.html.erb
us_geo-2.0.4 explorer_app/app/views/core_based_statistical_areas/_table.html.erb
us_geo-2.0.3 explorer_app/app/views/core_based_statistical_areas/_table.html.erb
us_geo-2.0.2 explorer_app/app/views/core_based_statistical_areas/_table.html.erb
us_geo-2.0.1 explorer_app/app/views/core_based_statistical_areas/_table.html.erb
us_geo-2.0.0 explorer_app/app/views/core_based_statistical_areas/_table.html.erb