私が所有するすべてのデータベースを表示する index.html があります。そして今、データベースを処理するためのいくつかのオプションを提供したいと思います (編集、削除など)。だから私は正しいURLをリダイレクトするためのデータベースIDといくつかのリンクでラジオ選択を作成したい.
私の目的: 要求されたアクションをクリックすると、ユーザーは正しい URL に移動します。
それが理解できたことを願っています:)誰か助けてください。
// 編集済み
<script>
function edit_db(id){
window.location.href="/edit/"+id
}
function delete_db(id){
window.location.href="/"+id+"/delete/"
}
</script>
<form method="post" action="">
<ul>
<table>
<tr>
<th> </th>
<th>Database</th>
<th>expireDate</th>
</tr>
{% for db in resources %}
<tr>
<td>
<input type="radio" name="id" id="{{db.id}}" value="{{db.id}}">
</td>
<td>{{db.name}}</td>
<td>{{db.expireDate}}</td>
</tr>
{% endfor %}
</table>
<input type="submit" class="submitButton" onclick="edit_db({{ db.id }})" value="{% trans "Edit database"%}" />
<input type="submit" class="submitButton" onclick="delete_db({{ db.id }})" value="{% trans "Delete database"%}" />
</form>