Skip to content

Commit

Permalink
add search field for username on ApplicationSubmission in Django Admin
Browse files Browse the repository at this point in the history
  • Loading branch information
rm03 committed Feb 10, 2024
1 parent 3115e81 commit 117290e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/clubs/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,7 @@ class ZoomMeetingVisitAdmin(admin.ModelAdmin):


class ApplicationSubmissionAdmin(admin.ModelAdmin):
search_fields = ("user__username",)
list_display = ("user", "id", "created_at", "status")


Expand Down

0 comments on commit 117290e

Please sign in to comment.