从django管理员行动中间页面重定向到更改表单页面

时间:2015-11-04 19:41:55

标签: django django-admin django-admin-actions

我正在尝试构建一个管理操作'download_selected',它将下载所选模型。选择操作后,我会重定向到中间页面,以便用户可以选择下载格式。当用户选择下载格式并单击“下载”时,它会下载该文件。但保持在同一中间页面上。如何将其重定向回更改表单管理页面?我想要的这个重定向类似于django'下载所选文件'的默认管理员操作。感谢。

这是我的代码。

admin.py

class SelectDownloadFormatForm(forms.Form):
    DOWNLOAD_TYPE_CHOICES=[('csv','csv'),
                           ('json', 'json'),
                           ('xml','xml')]

    _selected_action = forms.CharField(widget=forms.MultipleHiddenInput)
    download_type = forms.ChoiceField(label=_('Select a Download type'), choices=DOWNLOAD_TYPE_CHOICES, widget=forms.RadioSelect())


def download_selected(self, request, queryset):
    import csv
    from django.http import HttpResponse, HttpResponseRedirect
    import StringIO

    form = None

    if 'download' in request.POST:
        form = self.SelectDownloadFormatForm(request.POST)

        if form.is_valid():
            dtype = form.cleaned_data['download_type']
            print dtype
            response = HttpResponse(content_type='text/csv')
            response['Content-Disposition'] = 'attachment; filename="export.csv"'
            writer = csv.writer(response)
            writer.writerow(['id', 'name', 'qid' ,'label', 'name', 'field'])

            count = 0
            for s in queryset:
                questions_query = ParentModel.objects.filter(parent_form_id = s.id)
                for q in questions_query:
                    writer.writerow([s.id, s.name, q.id, q.label, q.name, q.field])
                    count += 1

            plural = ''
            if count != 1:
                plural = 's'

            self.message_user(request, "Successfully downloaded %d survey response%s in %s format" % (count, plural, dtype))               
            return response

    if not form:
        form = self.SelectDownloadFormatForm(initial={'_selected_action': request.POST.getlist(admin.ACTION_CHECKBOX_NAME)})

    return render(request,'admin/download_type.html', {'items': queryset,
                                                     'download_type_form': form,
                                                    })
download_selected.short_description = "Download selected forms"

download_type.html

{% extends "admin/base_site.html" %}
{% block content %}
<form action="" method="post">
  {% csrf_token %}  
  {{ download_type_form }}

  <p>Following survey will be downloaded with corresponding responses:</p>

  <ul>{{ items|unordered_list }}</ul>

  <input type="hidden" name="action" value="download_selected" />
  <input type="submit" name="download" value="Download" />
 </form>

{% endblock %}

2 个答案:

答案 0 :(得分:1)

我添加了一个额外的按钮以便返回

<a href="#" onclick="window.history.back(); return false;" class="button cancel-link">Go Back</a>

答案 1 :(得分:0)

您需要使用javascript进行重定向。

您可以使用jQuery File Download,以便执行以下操作:

$.fileDownload('/url/to/download').done(function {
        // redirect
})

不确定您是否可以将其与表单帖子结合使用。