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

32 lines
801 B
Plaintext

<table class="table">
<thead>
<tr>
<th scope="col">
<%= Contact.human_attribute_name :contact_network %>
</th>
<th scope="col">
<%= Contact.human_attribute_name :value %>
</th>
</tr>
</thead>
<tbody>
<% contacts.each do |contact| %>
<tr>
<td><%= contact.contact_network.name %></td>
<td>
<% if contact.link.nil? %>
<%= truncate contact.value %>
<% else %>
<%= link_to truncate(contact.value),
contact.link,
target: :_blank,
rel: 'noopener noreferrer' %>
<i class="fas fa-external-link-alt fa-xs text-muted"></i>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>