Files
fizzy/app/views/cards/steps/_step.html.erb
T
2026-03-06 18:23:56 +01:00

9 lines
366 B
Plaintext

<%= turbo_frame_tag step do %>
<li class="step">
<%= form_with model: [step.card, step], data: { controller: "form" } do |form| %>
<%= form.check_box :completed, { class: "checkbox", data: { action: "change->form#submit" } } %>
<% end %>
<%= link_to step.content, edit_card_step_path(step.card, step), class: "step__content" %>
</li>
<% end %>