In the view.html.erb:

<%= render @posts %>

In each _post.html.erb:

<%= render partial: 'shared/block', locals: { blockedcallsign: post.callsign 
} %>

In each _block.html.erb:

<%= button_to blockrelationships_path, class: 'btn btn-default btn-xs',
                        params: { 
                            blocker_callsign: @callsign, 
                            blocked_callsign: blockedcallsign
                        },
                        remote: true do %>
<% end %>

I get the error: `undefined local variable or method 'blockedcallsign'`. 
What's wrong with the code?

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rubyonrails-talk+unsubscr...@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/a746c5c6-5c8d-457d-9c72-23cb037a9092%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to