Render collection of objects

Hello!

I’m trying to render a template this way (below), but the object is nil
at
_category.html.erb file.

index.html.erb
<%= render @categories %>

_category.html.erb

<%=category.name %>

error:

undefined method `name’ for nil:NilClass

With show.html.erb file it’s render.

Thanks

See u database schema

2012/8/13 Lucas Lima de Souza [email protected]

<%=category.name %>


att,

Rogerio

A complicao se descomplica na mesma proporo que fazemos os ns se
desatarem ao tecer o conhecimento do saber.

On 13 August 2012 14:04, Lucas Lima de Souza [email protected]
wrote:

<%=category.name %>

error:

undefined method `name’ for nil:NilClass

Is it possible that in _category.html.erb you are assigning a value to
category that is overwriting the passed in value with nil? Try
accessing displaying category.name in the first line of the partial.

Colin