別のページにリダイレクトして、テーブルからURLにパラメータを渡す方法は?私はtornatoテンプレートでこのようなものを作成しました
<table data-role="table" id="my-table" data-mode="reflow">
<thead>
<tr>
<th>Username</th>
<th>Nation</th>
<th>Rank</th>
<th></th>
</tr>
</thead>
<tbody>
{% for result in players %}
<tr>
<td>{{result['username']}}</td>
<td>{{result['nation']}}</td>
<td>{{result['rank']}}</td>
<td><input type="button" name="theButton" value="Detail"
></td>
</tr>
</tbody>
{% end %}
</table>
詳細を押すとリダイレクトされ/player_detail?username=username
、そのプレーヤーに関するすべての詳細が表示されます。内部入力タグで試しましhref="javascript:window.location.replace('./player_info');"
たが、result ['username']を入れる方法がわかりません。これを行う方法は?