<%= link_to event do %>
#bunch of stuff making up the partial.
<% end %>
So I'm trying to assign an ID and a class to each item in a partial. I've seen where you have to call the full link_to
function like <%= link_to event, { controller: :controller, action: :action }, {class: 'someClass', id: 'someId' } %>
.
That's not working for me, because of the do block, methinks? Ideas?
Does this work for you?
You can do
which will give you
To make
'event'
actually an HTML div you can do