Django

Code

Ticket #13081 (new)

Opened 5 months ago

Last modified 3 months ago

Admin actions loose get-parameters in changelist view

Reported by: joh Assigned to: SmileyChris
Milestone: Component: django.contrib.admin
Version: SVN Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: 1 Needs documentation: 0
Needs tests: 0 Patch needs improvement: 0

Description

If the actions from the admin changelist view are used, the user will be redirected to the changeliste view, but if a filter or search was active, this information will be lost after redirection.

We discovert this behaviour as problematic in different satchmo/django-based shops we are hosting. If our users filter products for a specific category and use an action to mark some of them as featured products, they will end up in the changelist view, but see all products again. This also affects pagination in changelist views, because this information is also lost after redirection. Most of our users expected these filters to be remembered after action usage.

I stripped down the reason to the package django.contrib.admin.options in the class ModelAdmin. The method response_action will return a HttpResponseRedirect('.') when the action itself does not return a response. The Location-header will then be "fixed" in django.http.utils in the function fix_location_header. This function seems to enable some kind of "relative redirection feeling" in django. It uses HttpRequest.build_absolute_uri.

A simple fix / enhancement would be to change ModelAdmin.response_action to return HttpReponseRedirect(request.build_absolute_uri()) if the action itself does not return a response. Alternative would be to use HttpReponseRedirect(''), but I am not sure if this is a "clean" way.

I will attach patches for both variants shortly.

Attachments

patch1.txt (0.5 kB) - added by joh on 03/10/10 10:55:34.
Suggestion 1 -- maybe not so "clean"
patch2.txt (0.6 kB) - added by joh on 03/10/10 10:55:57.
Suggestion 2
13081.diff (1.7 kB) - added by SmileyChris on 04/22/10 21:56:13.

Change History

03/10/10 10:55:34 changed by joh

  • attachment patch1.txt added.

Suggestion 1 -- maybe not so "clean"

03/10/10 10:55:57 changed by joh

  • attachment patch2.txt added.

Suggestion 2

03/10/10 10:56:35 changed by joh

  • needs_better_patch changed.
  • has_patch set to 1.
  • needs_tests changed.
  • needs_docs changed.

03/10/10 19:19:47 changed by russellm

  • status changed from new to closed.
  • resolution set to duplicate.

Duplicate of #6903

03/10/10 20:01:10 changed by joh

  • status changed from closed to reopened.
  • resolution deleted.

I agree that this ticket is similar to #6903, but solving this problem for admin actions is currently not mentioned in #6903. In addition, I think that solving this problem for admin actions is very simple compared to a general solution for #6903.

The use case described in #6903 is different: It is only related to edit a single object. With admin actions there maybe no intermediate page (e.g. when setting some flags on marked instances) and loosing the filter parameters really is confusing to users.

I kindly request to rethink on this issue, but will not open this issue again if it is still considered a duplicate of #6903.

03/11/10 06:29:03 changed by russellm

  • stage changed from Unreviewed to Accepted.

Apologies - you are correct. Admin actions are handled differently, so this is a separate problem (and should be much easier to solve).

04/22/10 21:56:13 changed by SmileyChris

  • attachment 13081.diff added.

04/22/10 21:56:36 changed by SmileyChris

  • owner changed from nobody to SmileyChris.
  • status changed from reopened to new.
  • stage changed from Accepted to Ready for checkin.

Add/Change #13081 (Admin actions loose get-parameters in changelist view)




Change Properties
Action