Ruby on Rails Saturday, June 27, 2015

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+unsubscribe@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/d0f7a823-bb6b-4705-a3ad-cb57511bcc51%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment