mirror of
https://github.com/Without-Proper-Instructions/GoatCTF
synced 2025-10-08 07:40:46 +00:00
Add other models to admin interface
This commit is contained in:
parent
1fd8597e6b
commit
b36cb81533
@ -1,5 +1,5 @@
|
||||
from django.contrib import admin
|
||||
from core.models import Challenge
|
||||
from core.models import Challenge, Team, Player, Solution
|
||||
from core.forms import ChallengeAdminForm
|
||||
|
||||
|
||||
@ -8,3 +8,6 @@ class ChallengeAdmin(admin.ModelAdmin):
|
||||
form = ChallengeAdminForm
|
||||
|
||||
admin.site.register(Challenge, ChallengeAdmin)
|
||||
admin.site.register(Team)
|
||||
admin.site.register(Player)
|
||||
admin.site.register(Solution)
|
||||
|
Loading…
x
Reference in New Issue
Block a user