Browse Source

Updating admin.py: registering user model

David Leonard 10 năm trước cách đây
mục cha
commit
ca6eafe67d
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      hackathon_starter/hackathon/admin.py

+ 2 - 0
hackathon_starter/hackathon/admin.py

@@ -1,3 +1,5 @@
 from django.contrib import admin
+from hackathon.models import UserProfile
 
 # Register your models here.
+admin.site.register(UserProfile)