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
420 B

10 months ago
11 months ago
10 months ago
8 months ago
11 months ago
8 months ago
11 months ago
  1. <div class="w-full bg-cyan-200 p-4">
  2. <div class="flex justify-between items-center">
  3. <h1 class="font-bold text-4xl">Scores</h1>
  4. <%= link_to "New score", new_score_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
  5. </div>
  6. <div id="scores" class="min-w-full ">
  7. <% @records.each do |score| %>
  8. <%= render score %>
  9. <%end%>
  10. </div>
  11. <%== pagy_nav(@pagy) %>
  12. </div>