I have this: view:
confirmations.each do |c|
<%= render "form", confirmation: c %>
end
partial:
<%= simple_form_for @confirmation do |f| %>
...
Rails for some reason gives me this error:
NoMethodError in Rosters#show
undefined method `model_name' for nil:NilClass
highlighting the line in the above partial.