Skip to content

Commit

Permalink
📝 Adds score to admin page
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftriplett committed May 29, 2024
1 parent cf358c1 commit 1f3d564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grants/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class ResourceAdmin(admin.ModelAdmin):

@admin.register(models.Score)
class ScoreAdmin(admin.ModelAdmin):
list_display = ["id", "applicant", "user"]
list_display = ["id", "applicant", "user", "score"]
raw_id_fields = ["applicant", "user"]
readonly_fields = ["applicant", "user", "score", "comment", "score_history"]

Expand Down

0 comments on commit 1f3d564

Please sign in to comment.