Skip to content

Commit

Permalink
Add models to django admin (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhprabhakaran3 authored Feb 27, 2024
1 parent f534e63 commit 717bd94
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions corpus/skyward_expedition/admin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from django.contrib import admin
from skyward_expedition.models import Announcement
from skyward_expedition.models import Invite
from skyward_expedition.models import SEUser
from skyward_expedition.models import Team


# Register your models here.
Expand All @@ -12,3 +15,6 @@ class SEUserAdmin(admin.ModelAdmin):


admin.site.register(SEUser, SEUserAdmin)
admin.site.register(Team)
admin.site.register(Invite)
admin.site.register(Announcement)

0 comments on commit 717bd94

Please sign in to comment.