admin画面のURLをいじってQuerySetの絞り込み
memoなので雑。(後で手直し)
admin.pyで
list_filter = ["count"]
のものは
http://example.com:8000/admin/anything?count__lt=10 http://example.com:8000/admin/anything?count__lte=10 http://example.com:8000/admin/anything?count=10 http://example.com:8000/admin/anything?count__gte=10 http://example.com:8000/admin/anything?count__gt=10
という感じでAnythingモデルをcountフィールドの値でフィルタリングできる。