You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
738 B

3 months ago
9 months ago
3 months ago
9 months ago
3 months ago
9 months ago
3 months ago
9 months ago
3 months ago
3 months ago
  1. <tr id="<%= dom_id score %>">
  2. <td class="my-5">
  3. <%= score.name %>
  4. </td>
  5. <td class="my-5">
  6. <%= score.grade %>
  7. </td>
  8. <td>
  9. <% if action_name != "show" %>
  10. <%= link_to score do %><%=fa_icon :eye, class: 'border rounded-2 mr-2' %>Show Score<% end %>
  11. <%= 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" %>
  12. <%= 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" %>
  13. <%= button_to "Destroy this score", score_path(score), method: :delete, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 font-medium" %>
  14. <hr class="mt-6">
  15. <% end %>
  16. </td>
  17. </tr>