Register Edition, Device in the admin UI

This commit is contained in:
Lukáš Kucharczyk 2023-02-20 22:01:20 +01:00
parent a3042caa20
commit 366c25a1ff
1 changed files with 3 additions and 1 deletions

View File

@ -1,9 +1,11 @@
from django.contrib import admin
from games.models import Game, Platform, Purchase, Session
from games.models import Game, Platform, Purchase, Session, Edition, Device
# Register your models here.
admin.site.register(Game)
admin.site.register(Purchase)
admin.site.register(Platform)
admin.site.register(Session)
admin.site.register(Edition)
admin.site.register(Device)