Forráskód Böngészése

Updating admin.py: registering user model

David Leonard 10 éve
szülő
commit
ca6eafe67d
1 módosított fájl, 2 hozzáadás és 0 törlés
  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)