I want to display a list of objects in a table, no problem doing the table. I want to put links in the data displayed of one column in the template. The question is, how can I pass data in that link to the view?. For example in struts2 and JSPs, I used to do it this way (with param):
<td class="nowrap">
<s:url id="unitList" action="doSubject!ShowSubjectUnits">
<s:param name="subjectID" value="%{id}" />
</s:url>
<s:a href="%{unitList}"><s:text name="%{unidades.size()}"/></s:a>
</td>
Maybe you can simply add GET parameters to your url:
Even better would be a nice url design with arguments: