Skip to content

Commit 8bd9d4e

Browse files
Add game id to admin.py
Update server/game_dev/admin.py to include id to ensure that committee can easily determine the path for the game's page. Co-authored-by: James Lee <82937700+SafetyInObscurity@users.noreply.github.com>
1 parent 1073975 commit 8bd9d4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/game_dev/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class GameShowcaseAdmin(admin.ModelAdmin):
2020

2121

2222
class GamesAdmin(admin.ModelAdmin):
23-
list_display = ("name", "description", "completion", "active", "hostURL", "itchEmbedID", "thumbnail", "event")
23+
list_display = ("id", "name", "description", "completion", "active", "hostURL", "itchEmbedID", "thumbnail", "event")
2424

2525

2626
admin.site.register(Member, MemberAdmin)

0 commit comments

Comments
 (0)