grantcallendar/app/views/experts/_list.html.erb

34 lines
947 B
Plaintext

<% if @experts.blank? %>
<div class="alert alert-info alert-dismissible">
<h5><i class="icon fas fa-info"></i> Informacja</h5>
Brak elementów na liście
</div>
<% else %>
<table class="table table-bordered">
<thead>
<tr>
<th>Zdjęcie</th>
<th>Nazwa</th>
<th>Opis</th>
<th style="width: 200px">Akcje</th>
</tr>
</thead>
<tbody>
<% @experts.each do |expert| %>
<tr>
<td><%= image_tag expert.avatar, height: 20 %></td>
<td><%= link_to expert.name, expert %></td>
<td><%= expert.description %></td>
<td>
<%= link_to raw('<i class="fas fa-edit"></i> Edycja'), edit_expert_path(expert), class: 'btn-sm btn-info' %>
<%= link_to raw('<i class="fas fa-trash-can"></i> Usuń'), expert, class: 'btn-sm btn-danger', method: :delete, data: { confirm: 'Czy na pewno?' } %>
</td>
</tr>
<% end %>
</tbody>
</table>
<% end %>