Hi I have a table in a html.erb file
<tr ng-repeat="record in TableContent">
<td>{{record.name}}</td>
<td>{{record.directory}}</td>
<td>{{record.creation_date}}</td>
<td>{{record.updated_date}}</td>
<td><%= render :partial => '/table_content/entry_actions',
:local => {:entry => record } %>
</td>
</tr>
It is possible for me to use the Angular record variable into the :local field of Rails render tag?
Thanks in advance!