forked from fixin.me/fixin.me
10 lines
423 B
Plaintext
10 lines
423 B
Plaintext
<%= render partial: 'form_repath' %>
|
|
<%# is .one? proper condition? can @readouts be empty? %>
|
|
<%= turbo_stream.enable_all 'button[name="discard"]' if @prev_quantities.one? %>
|
|
<% @readouts.each do |r| %>
|
|
<%= turbo_stream.disable_all "select.quantity option[value='#{r.quantity_id}']" %>
|
|
<% end %>
|
|
<%= turbo_stream.before :readouts_form do %>
|
|
<%= render partial: 'form', collection: @readouts, as: :readout %>
|
|
<% end %>
|