1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/settings/contacts/_table.html.erb

35 lines
881 B
Text
Raw Normal View History

2019-09-03 10:31:20 -04:00
<table class="table mt-3">
<thead>
<tr>
<th scope="col">
<%= Contact.human_attribute_name :contact_network %>
</th>
<th scope="col">
<%= Contact.human_attribute_name :value %>
</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<% contacts.each do |contact| %>
<tr>
<td><%= contact.contact_network.name %></td>
<td><%= truncate contact.value %></td>
<td>
<% if policy([:settings, contact]).destroy? %>
<%= link_to(
[:settings, contact],
method: :delete,
class: 'btn btn-danger btn-sm',
data: { confirm: contact_destroy_confirmation(contact) },
) do %>
<i class="fas fa-trash"></i>
<% end %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>