11 lines
464 B
Text
11 lines
464 B
Text
<h1><%= t("scaffold.pagetitle_edit", model: ChecklistEntry.model_name.human) %></h1>
|
|
|
|
<%= turbo_frame_tag dom_id(@checklist_entry, :frame) do %>
|
|
<%= render "form", checklist_entry: @checklist_entry %>
|
|
|
|
<% end %>
|
|
|
|
<div class="action-row">
|
|
<%= link_to t("scaffold.link_show", model: ChecklistEntry.model_name.human), @checklist_entry %>
|
|
<%= link_to t("scaffold.link_index", model: ChecklistEntry.model_name.human(count: 2)), checklist_entries_path %>
|
|
</div>
|