获取我的ModelAdmin(Django)中选定行的所有ID

时间:2018-08-27 15:39:36

标签: django django-models django-admin id django-admin-actions

在django管理页面中,我创建了一个按钮:RUN。我想单击此按钮以检索团队表中所选行的ID。

以下是“管理”页面中按钮的预览:

enter image description here

这是按钮的代码:

class ImportAdmin(admin.ModelAdmin):
    change_list_template = 'team/admin/change_list.html'
    model = team_temp

我的模板:change_list.html

<div class="container" align="center">
    <form class="btn-group" id="login_form" method="get" action="/team/team_temp/">
      <input type="hidden" id="ids" name="ids" value = {{ ???? }}>
      <button class="btn btn-warning btn-lg" id="team_temp" name="team_temp" type="submit">RUN</button>
    </form>
</div>

我的观点:

def team_temp(request):
    print(self.request.GET.get('ids'))
    return redirect(reverse('home'))

0 个答案:

没有答案