vote up 5 vote down star
5

how can i change the default filter choice from 'ALL'.I have a field named as 'status' which has three values :- 'activate','pending','rejected'.when i use list_filter in django_admin ,the filter is by default set to 'All' but i want to set it to pending by default.

flag

19% accept rate

4 Answers

vote up 4 vote down check
class MyModelAdmin(admin.ModelAdmin):   

    def changelist_view(self, request, extra_context=None):

        if not request.GET.has_key('decommissioned__exact'):

            q = request.GET.copy()
            q['decommissioned__exact'] = 'N'
            request.GET = q
            request.META['QUERY_STRING'] = request.GET.urlencode()
        return super(MyModelAdmin,self).changelist_view(request, extra_context=extra_context)
link|flag
Extremely cool. I needed exactly this just 13 hours after you had submitted the answer. Thanks Paolo, thanks Stack Overflow, thanks Google, thanks Django. – akaihola May 21 at 20:14
i thougth i have answer the question.But the only problem was that my answer was not formatted.cool.it was like this – ha22109 May 22 at 7:45
Why did you roll it back? Your code is missing the 'c' of class, and is hard to read without the formatting. – Dominic Rodger May 22 at 7:46
know correct.it is formatted – ha22109 May 22 at 7:47
1  
This solution has the drawback that although the "All" choice is still displayed in the UI, selecting it still applies the default filtering. – akaihola May 29 at 14:47
show 1 more comment
vote up 1 vote down

Note that if instead of pre-selecting a filter value you want to always pre-filter the data before showing it in the admin, you should override the ModelAdmin.queryset() method instead.

link|flag
This is a pretty clean and quick solution although it may still cause problems. When the filtering options are enabled in the admin the user may get seemingly incorrect results. If the overriden queryset contains an .exclude() clause then records caught by that will never be listed but the admin filtering options to explicitly show them will still be offered by the admin UI. – TomA Jul 16 at 20:25
vote up 0 vote down

I know that is not the best solution, but i changed the index.html in the admin template, line 25 and 37 like this:

25: <th scope="row"><a href="{{ model.admin_url }}{% ifequal model.name "yourmodelname" %}?yourflag_flag__exact=1{% endifequal %}">{{ model.name }}</a></th>

37: <td><a href="{{ model.admin_url }}{% ifequal model.name "yourmodelname" %}?yourflag__exact=1{% endifequal %}" class="changelink">{% trans 'Change' %}</a></td>

link|flag
vote up 0 vote down

Hi all

I have a followup question: How can I get a QuerySet instance from the ModelAdmin with filters set as defined by the query string. For instance, ?start_date_gte=2009-11-06

The queryset() method does not seem to use these filters.

link|flag

Your Answer

Get an OpenID
or

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