<div class="container">
<%= nav_breadcrumb(
[translate(:staff_services), staff_root_path],
ContactNetwork.model_name.human(count: 0),
) %>
<table class="table">
<thead>
<tr>
<th scope="col">
<%= ContactNetwork.human_attribute_name :codename %>
</th>
<%= ContactNetwork.human_attribute_name :name %>
<%= ContactNetwork.human_attribute_name :contacts %>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% @contact_networks.each do |contact_network| %>
<td scope="row"><%= contact_network.codename %></td>
<td><%= contact_network.name %></td>
<td><%= contact_network.contacts.count %></td>
<% end %>
</tbody>
</table>
</div>