How can I make each row clickable without repeating
This one is an example that shows the problem, parameter could be the code:
<table>
<thead>
<tr>
<th>Code</th>
<th>User</th>
...
</tr>
</thead>
<tbody>
<tr>
<td><a href="page/123"> 123 </a></td>
<td><a href="page/123"> User A </a></td>
...
</tr>
<tr>
<td><a href="page/456"> 456 </a></td>
<td><a href="page/456"> User B </a></td>
...
</tr>
</tbody>
Thanks Excuse me for my English, I hope that you understand the problem.