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.

13 lines
373 B

8 months ago
9 months ago
8 months ago
9 months ago
9 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. <%= render @scores %>
  8. </div>
  9. <%== pagy_nav(@pagy) %>
  10. </div>