Skip to content

Commit

Permalink
admin panel
Browse files Browse the repository at this point in the history
  • Loading branch information
catgirlinspace committed Jul 16, 2023
1 parent b600916 commit 6ca9455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion users/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class GitHubLinkInline(TabularInline):
class UserAdmin(AbstractUserAdmin):
fieldsets = AbstractUserAdmin.fieldsets + (
(None, {"fields": ["profile_picture", "saved_favorite_color", "data_export_pending", "last_data_export",
"verified_email"]}),)
"verified_email", "preferred_pronouns"]}),)
inlines = [GitHubLinkInline]
list_display = ("username", "display_name", "email", "is_staff", "date_joined", "verified_email",)
search_fields = ("username", "display_name", "email")
Expand Down

0 comments on commit 6ca9455

Please sign in to comment.