evodata/app/views/checks/index.html.erb
2021-12-18 16:14:50 +01:00

15 lines
499 B
Plaintext

<div class="w-full">
<% if notice.present? %>
<p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%= notice %></p>
<% end %>
<div class="flex justify-between items-center">
<h1 class="text-lg font-bold text-4xl">Checks</h1>
<%= link_to 'New check', new_check_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
</div>
<div id="checks" class="min-w-full">
<%= render @checks %>
</div>
</div>