将值从html按钮传递到python脚本

时间:2015-09-01 11:24:18

标签: python html django

我有一个html模板,如:

<button id="demo-btn-" >Pack</button>
<table class="table table-striped">
    <thead>
        <tr>
            <th><input type="checkbox" onClick="toggle(this, 'no')"></th>
            <th>Invoice</th>
            <th>User</th>
            <th>Order date</th>
            <th>Amount</th>
            <th>Status</th>
            <th>Tracking Number</th>
        </tr>
    </thead>
    <tbody>
    {% for oid,dbd,stts,tp in new_orders %}
        <tr>
            <td><input type="checkbox" name="no" value="{{oid}}"></td>
            <td><a class="btn-link" href="#">{{oid}}</a></td>
            <td>Steve N. Horton</td>
            <td><span class="text-muted"><i class="fa fa-clock-o"></i>{{dbd}} </span></td>
            <td>{{tp}}</td>
            <td>{{stts}}</td>
            <td>-</td>
        </tr>
        {% endfor %}
    </tbody>
</table>

当我选中<thead>中的复选框时,会选中<tbody>中的所有复选框。现在我想,当我选择复选框并按下包按钮时,每行的oid值应该传递给django视图。怎么做?

编辑:

我想将多个oid作为列表传递给python脚本。如果我可以将这些作为列表传递给django app的视图文件,我可以这样做。我不知道如何将列表或值传递给django应用程序。

0 个答案:

没有答案