Skip to content

Commit

Permalink
Show slug on AddonsConfigAdmin (#11974)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher authored Feb 4, 2025
1 parent 7a24339 commit 9b1e784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readthedocs/projects/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ class EnvironmentVariableAdmin(admin.ModelAdmin):
class AddonsConfigAdmin(admin.ModelAdmin):
model = AddonsConfig
raw_id_fields = ("project", "options_base_version")
list_display = ("project", "enabled")
list_display = ("project", "project__slug", "enabled")
search_fields = ("project__slug",)
list_editable = ("enabled",)

Expand Down

0 comments on commit 9b1e784

Please sign in to comment.