Is it possible to create a custom admin action for the django admin that doesn't require selecting some objects to run it on?

If you try to run an action without selecting objects, you get the message:

Items must be selected in order to perform actions on them. No items have been changed.

Is there a way to override this behaviour and let the action run anyway?

link|improve this question
For what purpose would you need actions that don't interact with model object? – rebus Dec 21 '10 at 15:44
feedback

3 Answers

up vote 3 down vote accepted

Yuji is on the right track, but I've used a simpler solution that may work for you. If you override response_action as is done below you can replace the empty queryset with a queryset containing all objects before the check happens. This code also checks which action you're running to make sure it's approved to run on all objects before changing the queryset, so you can restrict it to only happen in some cases.

    def response_action(self, request, queryset):
    # override to allow for exporting of ALL records to CSV if no chkbox selected
    selected = request.POST.getlist(admin.ACTION_CHECKBOX_NAME)
    if request.META['QUERY_STRING']:
        qd = dictify_querystring(request.META['QUERY_STRING'])
    else:
        qd = None
    data = request.POST.copy()
    if len(selected) == 0 and data['action'] in ('export_to_csv', 'extended_export_to_csv'):
        ct = ContentType.objects.get_for_model(queryset.model)
        klass = ct.model_class()
        if qd:
            queryset = klass.objects.filter(**qd)[:65535] # cap at classic Excel maximum minus 1 row for headers
        else:
            queryset = klass.objects.all()[:65535] # cap at classic Excel maximum minus 1 row for headers
        return getattr(self, data['action'])(request, queryset)
    else:
        return super(ModelAdminCSV, self).response_action(request, queryset)
link|improve this answer
feedback

Is there a way to override this behaviour and let the action run anyway?

I'm going to say no there is no easy way.

If you grep your error message, you see that the code is in django.contrib.admin.options.py and the problem code is deep inside the changelist_view.

action_failed = False
selected = request.POST.getlist(helpers.ACTION_CHECKBOX_NAME)

# Actions with no confirmation
if (actions and request.method == 'POST' and
        'index' in request.POST and '_save' not in request.POST):
    if selected:
        response = self.response_action(request, queryset=cl.get_query_set())
        if response:
            return response
        else:
            action_failed = True
    else:
        msg = _("Items must be selected in order to perform "
                "actions on them. No items have been changed.")
        self.message_user(request, msg)
        action_failed = True

It's also used in the response_action function as well, so you can't just override the changelist_template and use that either -- it's going to be easiest to define your own action-validity checker and runner.


If you really want to use that drop down list, here's an idea with no guarantees.

How about defining a new attribute for your selection-less admin actions: myaction.selectionless = True

Copy the response_action functionality to some extent in your overridden changelist_view that only works on actions with a specific flag specified, then returns the 'real' changelist_view

    # There can be multiple action forms on the page (at the top
    # and bottom of the change list, for example). Get the action
    # whose button was pushed.
    try:
        action_index = int(request.POST.get('index', 0))
    except ValueError:
        action_index = 0

    # Construct the action form.
    data = request.POST.copy()
    data.pop(helpers.ACTION_CHECKBOX_NAME, None)
    data.pop("index", None)

    # Use the action whose button was pushed
    try:
        data.update({'action': data.getlist('action')[action_index]})
    except IndexError:
        # If we didn't get an action from the chosen form that's invalid
        # POST data, so by deleting action it'll fail the validation check
        # below. So no need to do anything here
        pass

    action_form = self.action_form(data, auto_id=None)
    action_form.fields['action'].choices = self.get_action_choices(request)

    # If the form's valid we can handle the action.
    if action_form.is_valid():
        action = action_form.cleaned_data['action']
        select_across = action_form.cleaned_data['select_across']
        func, name, description = self.get_actions(request)[action]

        if func.selectionless:
             func(self, request, {})

You'd still get errors when the 'real' action is called. You could potentially modify the request.POST to remove the action IF the overridden action is called.

Other ways involve hacking way too much stuff. I think at least.

link|improve this answer
feedback

Since object selection isn't part of what you need, it sounds like you might be best served by creating your own admin view.

Making your own admin view is pretty simple:

  1. Write the view function
  2. Put a @staff_member_required decorator on it
  3. Add a pattern to your URLconf that points to that view
  4. Add a link to it by overriding the relevant admin template(s)

You can also use a new 1.1 feature related to this, but you may find it simpler to do as I just described.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.