web-dev-qa-db-ja.com

Django Adminでのlist_filterのカスタムフィルターの作成

Django通常の 'is_staff'と 'is_superuser'ではなくadminのカスタムフィルターを作成したいと思います。これを読んだことがあります list_filter in Django docs。カスタムフィルターは次のように機能します。

from datetime import date

from Django.utils.translation import ugettext_lazy as _
from Django.contrib.admin import SimpleListFilter

class DecadeBornListFilter(SimpleListFilter):
    # Human-readable title which will be displayed in the
    # right admin sidebar just above the filter options.
    title = _('decade born')

    # Parameter for the filter that will be used in the URL query.
    parameter_name = 'decade'

    def lookups(self, request, model_admin):
        """
        Returns a list of tuples. The first element in each
        Tuple is the coded value for the option that will
        appear in the URL query. The second element is the
        human-readable name for the option that will appear
        in the right sidebar.
        """
        return (
            ('80s', _('in the eighties')),
            ('90s', _('in the nineties')),
        )

    def queryset(self, request, queryset):
        """
        Returns the filtered queryset based on the value
        provided in the query string and retrievable via
        `self.value()`.
        """
        # Compare the requested value (either '80s' or '90s')
        # to decide how to filter the queryset.
        if self.value() == '80s':
            return queryset.filter(birthday__gte=date(1980, 1, 1),
                                    birthday__lte=date(1989, 12, 31))
        if self.value() == '90s':
            return queryset.filter(birthday__gte=date(1990, 1, 1),
                                    birthday__lte=date(1999, 12, 31))

class PersonAdmin(ModelAdmin):
    list_filter = (DecadeBornListFilter,)

しかし、私はすでにこのようなlist_displayのカスタム関数を作成しています:

def Student_Country(self, obj):
    return '%s' % obj.country
Student_Country.short_description = 'Student-Country'

List_filterの新しいカスタム関数を作成する代わりに、list_filterのlist_displayのカスタム関数を使用できますか?任意の提案や改善は大歓迎です..これに関するいくつかのガイダンスが必要です...ありがとう...

51
lakesh

実際、SimpleListFilterを拡張することにより、カスタムフィルターを管理フィルターに追加できます。たとえば、上記で使用した国管理フィルターに「アフリカ」の大陸フィルターを追加する場合、次の操作を実行できます。

Admin.pyで:

from Django.contrib.admin import SimpleListFilter

class CountryFilter(SimpleListFilter):
    title = 'country' # or use _('country') for translated title
    parameter_name = 'country'

    def lookups(self, request, model_admin):
        countries = set([c.country for c in model_admin.model.objects.all()])
        return [(c.id, c.name) for c in countries] + [
          ('AFRICA', 'AFRICA - ALL')]

    def queryset(self, request, queryset):
        if self.value() == 'AFRICA':
            return queryset.filter(country__continent='Africa')
        if self.value():
            return queryset.filter(country__id__exact=self.value())

class CityAdmin(ModelAdmin):
    list_filter = (CountryFilter,)
29
Rick Westera

あなたのlist_displayメソッドは文字列を返しますが、私が正しく理解していれば、あなたがしたいことは、学生の国の選択を可能にするフィルターを追加することです、正しいですか?

この単純なリレーションフィルター、および実際には「Student-Country」リスト表示列の場合、カスタムフィルタークラスやカスタムリスト表示メソッドを作成する必要はありません。これで十分です:

class MyAdmin(admin.ModelAdmin):
    list_display = ('country', )
    list_filter = ('country', )

方法Djangoはlist_filterを行います ドキュメントで で説明されているように、最初に、事前に構築されたフィルタークラスに提供するフィールドを自動的に照合します。 CharFieldおよびForeignKey。

list_display同様に、関連オブジェクトを取得し、これらのunicode値を返すことで渡されるフィールドを使用して、チェンジリスト列の生成を自動化します(と同じ上記で指定した方法で)。

6
tutuDajuju

Rick Westera の答えに加えて、この状況に対する Django Docs があります。

ModelAdmin.list_filter
Set list_filter管理者の変更リストページの右側のサイドバーでフィルターを有効にします
list_filterはリストまたは要素のタプルでなければなりません

0
hasher