See #432: can now filter with tags in Track/album/artist admin

environments/review-docs-rate-jr6phc/deployments/2479
Eliot Berriot 2019-07-25 10:43:34 +02:00
rodzic 1674c771ca
commit a48a32c7e9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
1 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -62,6 +62,10 @@ class ManageArtistFilterSet(filters.FilterSet):
"field": forms.IntegerField(),
"distinct": True,
},
"tag": {
"to": "tagged_items__tag__name",
"distinct": True,
},
},
)
)
@ -91,6 +95,10 @@ class ManageAlbumFilterSet(filters.FilterSet):
"field": forms.IntegerField(),
"distinct": True,
},
"tag": {
"to": "tagged_items__tag__name",
"distinct": True,
},
},
)
)
@ -129,6 +137,10 @@ class ManageTrackFilterSet(filters.FilterSet):
"field": forms.IntegerField(),
"distinct": True,
},
"tag": {
"to": "tagged_items__tag__name",
"distinct": True,
},
},
)
)