Skip to content

Commit

Permalink
⚙️ Adds program filter to Applicant model
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftriplett committed May 3, 2024
1 parent c079f54 commit e8113ef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions grants/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class AnswerAdmin(admin.ModelAdmin):

@admin.register(models.Applicant)
class ApplicantAdmin(admin.ModelAdmin):
list_filter = ["program"]
list_display = ["id", "name", "email", "program", "applied"]
list_display_links = ["id", "name"]
inlines = [AnswerInline]
Expand Down

0 comments on commit e8113ef

Please sign in to comment.