Skip to content
Snippets Groups Projects
Verified Commit a48a32c7 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

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

parent 1674c771
No related branches found
No related tags found
No related merge requests found
......@@ -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,
},
},
)
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment