didn't need django-profiles at all, Sorry!
parent
52e3f50db0
commit
a4344e0afa
|
@ -86,7 +86,7 @@ class Wishlist(models.Model):
|
|||
works = models.ManyToManyField('Work', related_name='wishlists')
|
||||
|
||||
class UserProfile(models.Model):
|
||||
user = models.ForeignKey(User, unique=True)
|
||||
user = models.OneToOneField(User)
|
||||
tagline = models.CharField(max_length=140, blank=True)
|
||||
|
||||
from regluit.core import signals
|
||||
|
|
|
@ -5,4 +5,3 @@ https://github.com/toastdriven/django-tastypie/tarball/master
|
|||
requests
|
||||
https://bitbucket.org/ubernostrum/django-registration/get/tip.tar.gz
|
||||
django-social-auth
|
||||
django-profiles
|
||||
|
|
|
@ -107,7 +107,6 @@ INSTALLED_APPS = (
|
|||
'registration',
|
||||
'social_auth',
|
||||
'tastypie',
|
||||
'profiles',
|
||||
)
|
||||
|
||||
# A sample logging configuration. The only tangible logging
|
||||
|
|
Loading…
Reference in New Issue