我在我的应用程序上有一个视图,我在其中使用这样的命令渲染
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>ID</th>
<th>Nombre</th>
<th>Descripcion</th>
<th>Fecha Creacion</th>
<th>Prioridad</th>
<th>Fecha Limite</th>
<th></th>
</tr>
</thead>
<tbody>
<%= render :file => "/notes/_pendientes.html.erb" %>
</tbody>
</table>
但是当我要在应用程序开头看到索引时,它看起来像这样
http://i.stack.imgur.com/dUTGT.jpg
在控制器中我有这样的变量
@pendientes = Note.where('estado = ?',true)
@finalizadas = Note.where('estado = ?',false)
我不知道为什么在索引开头显示该信息
感谢帮助