Browse Source

Updating admin.py: registering user model

David Leonard 10 years ago
parent
commit
ca6eafe67d
1 changed files with 2 additions and 0 deletions
  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)