Files
fizzy/app/views/categories/index.html.erb
T
2024-09-04 14:54:11 -04:00

21 lines
910 B
Plaintext

<section class="panel borderless center margin pad">
<h1>All categories</h1>
<ul class="txt-align-start">
<% @categories.each do | category | %>
<li class="flex align-start justify-space-between gap pad" style="border-block-end: 1px solid var(--color-subtle)">
<span>
<strong class="txt-nowrap"><%= category.title %></strong>
<span class="txt-nowrap"><%= category.id %></span>
</span>
<span><%= category.bubbles.collect { |bubble| bubble.title }.to_sentence%></span>
<%= button_to category_path(category),
method: :delete, data: { turbo_confirm: "Are you sure you want to delete this category?" },
class: "btn txt-small" do %>
<%= image_tag "remove.svg", aria: { hidden: true }, size: 24 %>
<span class="for-screen-reader">Delete</span>
<% end %>
</li>
<% end %>
</ul>
</section>