Skip to content

Commit

Permalink
feat(admin) Filter by verified email status
Browse files Browse the repository at this point in the history
  • Loading branch information
migonzalvar committed Aug 22, 2020
1 parent c9e1739 commit 122666e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taiga/users/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class UserAdmin(DjangoUserAdmin):
form = UserChangeForm
add_form = UserCreationForm
list_display = ("username", "email", "full_name")
list_filter = ("is_superuser", "is_active")
list_filter = ("is_superuser", "is_active", "verified_email")
search_fields = ("username", "full_name", "email")
ordering = ("username",)
filter_horizontal = ()
Expand Down

0 comments on commit 122666e

Please sign in to comment.