25 lines
684 B
Plaintext
25 lines
684 B
Plaintext
<%= link_to t("admin.geozones.index.create"),
|
|
new_admin_geozone_path, class: "button success float-right" %>
|
|
|
|
<h2 class="inline-block"><%= t("admin.geozones.index.title") %></h2>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th><%= t("admin.geozones.geozone.name") %></th>
|
|
<th><%= t("admin.geozones.geozone.external_code") %></th>
|
|
<th><%= t("admin.geozones.geozone.census_code") %></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @geozones.each do |geozone| %>
|
|
<tr id="<%= dom_id(geozone) %>">
|
|
<td><%= geozone.name %></td>
|
|
<td><%= geozone.external_code %></td>
|
|
<td><%= geozone.census_code %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|