When using the rating plug in I cannot get the following to work as I
expect:
{{extend 'layout.html'}}
<table id="sortpage" class="display">
<tbody>
{{for r in results:}}
<tr>
<td>{{=r.name}}</td>
<td>{{=r.posted}}</td>
<td>{{=plugin_rating('meeting',r.id)}}</td></tr>
{{pass}}
</tbody>
</table>
the rating is only displayed for the 1st record in results, nothing is
shown for the other records. I looked at the slices code to try and
see how it worked, but it seesm to be using a different version of
ratings. Any suggestions would be much appreciated.