|
|
@ -9,10 +9,9 @@ |
|
|
|
|
|
|
|
<td> |
|
|
|
<% if action_name != "show" %> |
|
|
|
<%= link_to score do %><%=fa_icon :eye, style: :regular, size: '4x', class: 'border rounded-lg border-purple-800 m-1 p-2 bg-white' %>Show Score<% end %> |
|
|
|
<%= link_to "Edit this score", edit_score_path(score), class: "rounded-xl border border-yellow-300 py-3 ml-2 px-5 bg-gray-100 inline-block font-medium" %> |
|
|
|
<%= link_to "Edit this score", edit_score_path(score), class: "rounded-lg py-3 ml-2 px-5 bg-gray-100 inline-block font-medium" %> |
|
|
|
<%= button_to "Destroy this score", score_path(score), method: :delete, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 font-medium" %> |
|
|
|
<%= link_to score, 'data-tooltip': 'show',class: 'border rounded-lg border-purple-800 m-1 p-2 bg-white' do %><%=fa_icon :eye %><% end %> |
|
|
|
<%= link_to edit_score_path(score), 'data-tooltip': 'edit', class: 'border rounded-lg border-purple-800 m-1 p-2 bg-white' do %><%=fa_icon :edit %><% end %> |
|
|
|
<%= link_to score, 'data-tooltip': 'delete', data:{ turbo_method: :delete}, class: 'border rounded-lg border-purple-800 m-1 p-2 bg-white' do %><%=fa_icon :trash %><% end %> |
|
|
|
<hr class="mt-6"> |
|
|
|
<% end %> |
|
|
|
</td> |
|
|
|