<%= "#{@checklist.name}" %>

<%= render @checklist %>
<%= link_to tag.i(class: "bi bi-plus-lg"), new_checklist_entry_path(checklist_id: @checklist.id), class: "btn btn-primary float-end", data: { turbo_frame: "checklist_entries" } %>

Checks

<%= turbo_frame_tag "new_checklist_entry" do %> <% end %>
<%= turbo_frame_tag "checklist_entries" do %> <% @checklist.checklist_entries.each do |entry| %> <%= turbo_frame_tag dom_id(entry, :frame) do %> <%= render entry %> <% end %> <% end %> <%= tag.i "Es sind keine Checks zugewiesen." if @checklist.empty? %> <% end %>
<%= link_to t("scaffold.link_edit", model: @checklist.model_name.human), edit_checklist_path(@checklist) %> <%= link_to t("scaffold.link_index", model: @checklist.model_name.human(count: 2)), checklists_path %> <%= button_to t("scaffold.link_destroy", model: @checklist.model_name.human), @checklist, method: :delete, class: "btn btn-outline-danger" %>