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.

15 lines
665 B

11 months ago
5 months ago
11 months ago
5 months ago
5 months ago
  1. <tr class="text-sm even:bg-gray-100 dark:even:bg-gray-900 dark:text-gray-200">
  2. <td class="px-2 w-1/2">
  3. <%= score.name %>
  4. </td>
  5. <td class="px-2 ">
  6. <%= score.grade %>
  7. </td>
  8. <td class="px-2">
  9. <%= score.created_at %>
  10. </td>
  11. <td class="w-1/4 p-2 flex flex-nowrap justify-end">
  12. <%= render partial: 'common/button', locals: {path: score, icon: :eye, tooltip: 'open score'} %>
  13. <%= render partial: 'common/button', locals: {path: edit_score_path(score), icon: :edit, tooltip: 'edit score'} %>
  14. <%= render partial: 'common/button', locals: {path: score, icon: :trash, tooltip: 'delete score',data:{ turbo_method: :delete}} %>
  15. </td>
  16. </tr>