2024-07-19 02:29:18 +02:00
|
|
|
<h1><%= t("scaffold.pagetitle_index", model: ChecklistEntry.model_name.human(count: 2)) %></h1>
|
|
|
|
|
|
2024-07-20 16:52:12 +02:00
|
|
|
<%= turbo_frame_tag "checklist_entries" do %>
|
|
|
|
|
<% @checklist_entries.each do |entry| %>
|
|
|
|
|
<%= turbo_frame_tag dom_id(entry, :frame) do %>
|
|
|
|
|
<%= render entry %>
|
2024-07-19 02:29:18 +02:00
|
|
|
<% end %>
|
2024-07-20 16:52:12 +02:00
|
|
|
<% end %>
|
|
|
|
|
<% end %>
|
2024-07-19 02:29:18 +02:00
|
|
|
|
|
|
|
|
<div class="action-row">
|
|
|
|
|
<%= link_to t("scaffold.link_new", model: ChecklistEntry.model_name.human), new_checklist_entry_path %>
|
|
|
|
|
</div>
|