Files
old-zsterminator/app/views/customers/index.html.erb
2025-03-03 19:38:57 +01:00

22 lines
764 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 %>
<% content_for :title, "Customers" %>
<div class="flex justify-between items-center">
<h1 class="font-bold text-4xl">Customers</h1>
<%= link_to "New customer", new_customer_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
</div>
<div id="customers" class="min-w-full">
<% @customers.each do |customer| %>
<%= render customer %>
<p>
<%= link_to "Show this customer", customer_path(customer), class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
</p>
<% end %>
</div>
</div>