Hi
I’ve got following problem:
I am attempting to write helper that will display table (stored in
partial) with some custom last column contents.
I would like to call it like
<% parametrized_users_list(@users) do |user| %>
<%= user.id %>
<%= user.created_at %>
<% end %>
where user.id and user.created_at would be that custom last column
content
What I did was I’ve created helper
def parametrized_users_list(users, options = {}, &block)
concat( render(:partial => ‘users/users_list’, :locals =>
options.merge(:users => users, :optionals => block)) )
end
and partial
Username | ||
---|---|---|
<%=h user.nickname %> | <%=h user.email %> | <%= optionals.call(user) %> |
… but as I render it, it results in a lot of trash - whole table is
rerendered within itself several times etc… What did I do wrong? How
can I store this erb to later render it in partial with correct
context (user in this case)…