Django - OneToOneField Not Populating in Admin
I’m trying to get the username of the current logged in user using OneToOneField
to populate in the admin once the user submits a form.
The username should go in the user
column of admin.py
.
I’ve tried various methods and still no luck. I’m new to this and this is my first Django application I’m building so I’m not sure what I’m missing.
I’m stuck and have no idea what I’m doing so any help is gladly appreciated.
Can someone please help? What am I missing?
Thanks!
Code Below:
user_profile/models
from django.db import models
from django.urls import reverse
from django.contrib.auth.models import AbstractUser, UserManager
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.dispatch import receiver
from django.conf import settings
from users.forms import CustomUserCreationForm, CustomUserChangeForm
from users.models import CustomUser
class Listing (models.Model):
user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, null=True)
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
name = models.CharField(max_length=100)
address = models.CharField(max_length=100)
zip_code = models.CharField(max_length=100)
mobile_number = models.CharField(max_length=100)
cc_number = models.CharField(max_length=100)
cc_expiration = models.CharField(max_length=100)
cc_cvv = models.CharField(max_length=100)
def create_profile(sender, **kwargs):
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
post_save.connect(create_profile, sender=User)
user_profile/admin.py
from django.contrib import admin
from django.contrib.auth import get_user_model
from django.contrib.auth.admin import UserAdmin
from user_profile.forms import HomeForm
from user_profile.models import Listing
# Register models here.
class UserProfileAdmin(admin.ModelAdmin):
list_display = ['name', 'address', 'zip_code', 'mobile_number', 'created', 'updated', 'user']
list_filter = ['name', 'zip_code', 'created', 'updated', 'user']
admin.site.register(Listing, UserProfileAdmin)
#admin.site.unregister(Listing)
master_application/settings.py
AUTH_USER_MODEL = 'users.CustomUser'
AUTH_PROFILE_MODULE = 'users.UserProfile'
users/models.py
from django.contrib.auth.models import AbstractUser, UserManager
from django.contrib.auth.models import User
from django.db import models
from django.urls import reverse
class CustomUserManager(UserManager):
def get_by_natural_key(self, username):
case_insensitive_username_field = '{}__iexact'.format(self.model.USERNAME_FIELD)
return self.get(**{case_insensitive_username_field: username})
class CustomUser(AbstractUser):
objects = CustomUserManager()`
python django django-models django-forms
add a comment |
I’m trying to get the username of the current logged in user using OneToOneField
to populate in the admin once the user submits a form.
The username should go in the user
column of admin.py
.
I’ve tried various methods and still no luck. I’m new to this and this is my first Django application I’m building so I’m not sure what I’m missing.
I’m stuck and have no idea what I’m doing so any help is gladly appreciated.
Can someone please help? What am I missing?
Thanks!
Code Below:
user_profile/models
from django.db import models
from django.urls import reverse
from django.contrib.auth.models import AbstractUser, UserManager
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.dispatch import receiver
from django.conf import settings
from users.forms import CustomUserCreationForm, CustomUserChangeForm
from users.models import CustomUser
class Listing (models.Model):
user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, null=True)
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
name = models.CharField(max_length=100)
address = models.CharField(max_length=100)
zip_code = models.CharField(max_length=100)
mobile_number = models.CharField(max_length=100)
cc_number = models.CharField(max_length=100)
cc_expiration = models.CharField(max_length=100)
cc_cvv = models.CharField(max_length=100)
def create_profile(sender, **kwargs):
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
post_save.connect(create_profile, sender=User)
user_profile/admin.py
from django.contrib import admin
from django.contrib.auth import get_user_model
from django.contrib.auth.admin import UserAdmin
from user_profile.forms import HomeForm
from user_profile.models import Listing
# Register models here.
class UserProfileAdmin(admin.ModelAdmin):
list_display = ['name', 'address', 'zip_code', 'mobile_number', 'created', 'updated', 'user']
list_filter = ['name', 'zip_code', 'created', 'updated', 'user']
admin.site.register(Listing, UserProfileAdmin)
#admin.site.unregister(Listing)
master_application/settings.py
AUTH_USER_MODEL = 'users.CustomUser'
AUTH_PROFILE_MODULE = 'users.UserProfile'
users/models.py
from django.contrib.auth.models import AbstractUser, UserManager
from django.contrib.auth.models import User
from django.db import models
from django.urls import reverse
class CustomUserManager(UserManager):
def get_by_natural_key(self, username):
case_insensitive_username_field = '{}__iexact'.format(self.model.USERNAME_FIELD)
return self.get(**{case_insensitive_username_field: username})
class CustomUser(AbstractUser):
objects = CustomUserManager()`
python django django-models django-forms
Does theCustomUser
model have a method called__str__
defined in it?
– xyres
Jan 2 at 2:06
@xyres No it does not, I just added the models.py whereCustomUser
is located. Any suggestions?
– spidey677
Jan 2 at 2:19
1
Don't worry about it.AbstractUser
already has this method and soCustomUser
model automatically inherits it from there. I think the answer posted by Daniel Roseman would solve your issue.
– xyres
Jan 2 at 2:25
@xyres Sounds good. Thank you.
– spidey677
Jan 2 at 2:57
add a comment |
I’m trying to get the username of the current logged in user using OneToOneField
to populate in the admin once the user submits a form.
The username should go in the user
column of admin.py
.
I’ve tried various methods and still no luck. I’m new to this and this is my first Django application I’m building so I’m not sure what I’m missing.
I’m stuck and have no idea what I’m doing so any help is gladly appreciated.
Can someone please help? What am I missing?
Thanks!
Code Below:
user_profile/models
from django.db import models
from django.urls import reverse
from django.contrib.auth.models import AbstractUser, UserManager
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.dispatch import receiver
from django.conf import settings
from users.forms import CustomUserCreationForm, CustomUserChangeForm
from users.models import CustomUser
class Listing (models.Model):
user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, null=True)
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
name = models.CharField(max_length=100)
address = models.CharField(max_length=100)
zip_code = models.CharField(max_length=100)
mobile_number = models.CharField(max_length=100)
cc_number = models.CharField(max_length=100)
cc_expiration = models.CharField(max_length=100)
cc_cvv = models.CharField(max_length=100)
def create_profile(sender, **kwargs):
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
post_save.connect(create_profile, sender=User)
user_profile/admin.py
from django.contrib import admin
from django.contrib.auth import get_user_model
from django.contrib.auth.admin import UserAdmin
from user_profile.forms import HomeForm
from user_profile.models import Listing
# Register models here.
class UserProfileAdmin(admin.ModelAdmin):
list_display = ['name', 'address', 'zip_code', 'mobile_number', 'created', 'updated', 'user']
list_filter = ['name', 'zip_code', 'created', 'updated', 'user']
admin.site.register(Listing, UserProfileAdmin)
#admin.site.unregister(Listing)
master_application/settings.py
AUTH_USER_MODEL = 'users.CustomUser'
AUTH_PROFILE_MODULE = 'users.UserProfile'
users/models.py
from django.contrib.auth.models import AbstractUser, UserManager
from django.contrib.auth.models import User
from django.db import models
from django.urls import reverse
class CustomUserManager(UserManager):
def get_by_natural_key(self, username):
case_insensitive_username_field = '{}__iexact'.format(self.model.USERNAME_FIELD)
return self.get(**{case_insensitive_username_field: username})
class CustomUser(AbstractUser):
objects = CustomUserManager()`
python django django-models django-forms
I’m trying to get the username of the current logged in user using OneToOneField
to populate in the admin once the user submits a form.
The username should go in the user
column of admin.py
.
I’ve tried various methods and still no luck. I’m new to this and this is my first Django application I’m building so I’m not sure what I’m missing.
I’m stuck and have no idea what I’m doing so any help is gladly appreciated.
Can someone please help? What am I missing?
Thanks!
Code Below:
user_profile/models
from django.db import models
from django.urls import reverse
from django.contrib.auth.models import AbstractUser, UserManager
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.dispatch import receiver
from django.conf import settings
from users.forms import CustomUserCreationForm, CustomUserChangeForm
from users.models import CustomUser
class Listing (models.Model):
user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, null=True)
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
name = models.CharField(max_length=100)
address = models.CharField(max_length=100)
zip_code = models.CharField(max_length=100)
mobile_number = models.CharField(max_length=100)
cc_number = models.CharField(max_length=100)
cc_expiration = models.CharField(max_length=100)
cc_cvv = models.CharField(max_length=100)
def create_profile(sender, **kwargs):
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
post_save.connect(create_profile, sender=User)
user_profile/admin.py
from django.contrib import admin
from django.contrib.auth import get_user_model
from django.contrib.auth.admin import UserAdmin
from user_profile.forms import HomeForm
from user_profile.models import Listing
# Register models here.
class UserProfileAdmin(admin.ModelAdmin):
list_display = ['name', 'address', 'zip_code', 'mobile_number', 'created', 'updated', 'user']
list_filter = ['name', 'zip_code', 'created', 'updated', 'user']
admin.site.register(Listing, UserProfileAdmin)
#admin.site.unregister(Listing)
master_application/settings.py
AUTH_USER_MODEL = 'users.CustomUser'
AUTH_PROFILE_MODULE = 'users.UserProfile'
users/models.py
from django.contrib.auth.models import AbstractUser, UserManager
from django.contrib.auth.models import User
from django.db import models
from django.urls import reverse
class CustomUserManager(UserManager):
def get_by_natural_key(self, username):
case_insensitive_username_field = '{}__iexact'.format(self.model.USERNAME_FIELD)
return self.get(**{case_insensitive_username_field: username})
class CustomUser(AbstractUser):
objects = CustomUserManager()`
python django django-models django-forms
python django django-models django-forms
edited Jan 2 at 3:18
spidey677
asked Jan 2 at 1:35


spidey677spidey677
91115
91115
Does theCustomUser
model have a method called__str__
defined in it?
– xyres
Jan 2 at 2:06
@xyres No it does not, I just added the models.py whereCustomUser
is located. Any suggestions?
– spidey677
Jan 2 at 2:19
1
Don't worry about it.AbstractUser
already has this method and soCustomUser
model automatically inherits it from there. I think the answer posted by Daniel Roseman would solve your issue.
– xyres
Jan 2 at 2:25
@xyres Sounds good. Thank you.
– spidey677
Jan 2 at 2:57
add a comment |
Does theCustomUser
model have a method called__str__
defined in it?
– xyres
Jan 2 at 2:06
@xyres No it does not, I just added the models.py whereCustomUser
is located. Any suggestions?
– spidey677
Jan 2 at 2:19
1
Don't worry about it.AbstractUser
already has this method and soCustomUser
model automatically inherits it from there. I think the answer posted by Daniel Roseman would solve your issue.
– xyres
Jan 2 at 2:25
@xyres Sounds good. Thank you.
– spidey677
Jan 2 at 2:57
Does the
CustomUser
model have a method called __str__
defined in it?– xyres
Jan 2 at 2:06
Does the
CustomUser
model have a method called __str__
defined in it?– xyres
Jan 2 at 2:06
@xyres No it does not, I just added the models.py where
CustomUser
is located. Any suggestions?– spidey677
Jan 2 at 2:19
@xyres No it does not, I just added the models.py where
CustomUser
is located. Any suggestions?– spidey677
Jan 2 at 2:19
1
1
Don't worry about it.
AbstractUser
already has this method and so CustomUser
model automatically inherits it from there. I think the answer posted by Daniel Roseman would solve your issue.– xyres
Jan 2 at 2:25
Don't worry about it.
AbstractUser
already has this method and so CustomUser
model automatically inherits it from there. I think the answer posted by Daniel Roseman would solve your issue.– xyres
Jan 2 at 2:25
@xyres Sounds good. Thank you.
– spidey677
Jan 2 at 2:57
@xyres Sounds good. Thank you.
– spidey677
Jan 2 at 2:57
add a comment |
1 Answer
1
active
oldest
votes
Your signal is broken; kwargs will never have a user
key so the profile will never be created. What you actually want to do is to check that the signal is being called on creation (rather than on update), add then create an instance of Listing:
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
Note, the AUTH_PROFILE_MODULE setting has not been used for years, you should remove it.
Thanks for the quick response. I made those adjustments now I'm gettinginvalid literal for int() with base 10: '2019-01-02 02:22:09.745917
. What can I do to fix that?
– spidey677
Jan 2 at 2:28
Can you show the full traceback (as an update to the question, properly formatted).
– Daniel Roseman
Jan 2 at 2:33
Forgive me for being new to django but how do I do that exactly?
– spidey677
Jan 2 at 2:53
I don't understand your comment. Update the question with the full error traceback.
– Daniel Roseman
Jan 2 at 3:02
Looks like after I cleareddb.sqlite3
the error went away. How do i check that the signal is being called on creation?
– spidey677
Jan 2 at 4:39
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54000304%2fdjango-onetoonefield-not-populating-in-admin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your signal is broken; kwargs will never have a user
key so the profile will never be created. What you actually want to do is to check that the signal is being called on creation (rather than on update), add then create an instance of Listing:
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
Note, the AUTH_PROFILE_MODULE setting has not been used for years, you should remove it.
Thanks for the quick response. I made those adjustments now I'm gettinginvalid literal for int() with base 10: '2019-01-02 02:22:09.745917
. What can I do to fix that?
– spidey677
Jan 2 at 2:28
Can you show the full traceback (as an update to the question, properly formatted).
– Daniel Roseman
Jan 2 at 2:33
Forgive me for being new to django but how do I do that exactly?
– spidey677
Jan 2 at 2:53
I don't understand your comment. Update the question with the full error traceback.
– Daniel Roseman
Jan 2 at 3:02
Looks like after I cleareddb.sqlite3
the error went away. How do i check that the signal is being called on creation?
– spidey677
Jan 2 at 4:39
add a comment |
Your signal is broken; kwargs will never have a user
key so the profile will never be created. What you actually want to do is to check that the signal is being called on creation (rather than on update), add then create an instance of Listing:
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
Note, the AUTH_PROFILE_MODULE setting has not been used for years, you should remove it.
Thanks for the quick response. I made those adjustments now I'm gettinginvalid literal for int() with base 10: '2019-01-02 02:22:09.745917
. What can I do to fix that?
– spidey677
Jan 2 at 2:28
Can you show the full traceback (as an update to the question, properly formatted).
– Daniel Roseman
Jan 2 at 2:33
Forgive me for being new to django but how do I do that exactly?
– spidey677
Jan 2 at 2:53
I don't understand your comment. Update the question with the full error traceback.
– Daniel Roseman
Jan 2 at 3:02
Looks like after I cleareddb.sqlite3
the error went away. How do i check that the signal is being called on creation?
– spidey677
Jan 2 at 4:39
add a comment |
Your signal is broken; kwargs will never have a user
key so the profile will never be created. What you actually want to do is to check that the signal is being called on creation (rather than on update), add then create an instance of Listing:
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
Note, the AUTH_PROFILE_MODULE setting has not been used for years, you should remove it.
Your signal is broken; kwargs will never have a user
key so the profile will never be created. What you actually want to do is to check that the signal is being called on creation (rather than on update), add then create an instance of Listing:
if kwargs['created']:
user_profile = Listing.objects.create(user=kwargs['instance'])
Note, the AUTH_PROFILE_MODULE setting has not been used for years, you should remove it.
answered Jan 2 at 2:06
Daniel RosemanDaniel Roseman
456k41591648
456k41591648
Thanks for the quick response. I made those adjustments now I'm gettinginvalid literal for int() with base 10: '2019-01-02 02:22:09.745917
. What can I do to fix that?
– spidey677
Jan 2 at 2:28
Can you show the full traceback (as an update to the question, properly formatted).
– Daniel Roseman
Jan 2 at 2:33
Forgive me for being new to django but how do I do that exactly?
– spidey677
Jan 2 at 2:53
I don't understand your comment. Update the question with the full error traceback.
– Daniel Roseman
Jan 2 at 3:02
Looks like after I cleareddb.sqlite3
the error went away. How do i check that the signal is being called on creation?
– spidey677
Jan 2 at 4:39
add a comment |
Thanks for the quick response. I made those adjustments now I'm gettinginvalid literal for int() with base 10: '2019-01-02 02:22:09.745917
. What can I do to fix that?
– spidey677
Jan 2 at 2:28
Can you show the full traceback (as an update to the question, properly formatted).
– Daniel Roseman
Jan 2 at 2:33
Forgive me for being new to django but how do I do that exactly?
– spidey677
Jan 2 at 2:53
I don't understand your comment. Update the question with the full error traceback.
– Daniel Roseman
Jan 2 at 3:02
Looks like after I cleareddb.sqlite3
the error went away. How do i check that the signal is being called on creation?
– spidey677
Jan 2 at 4:39
Thanks for the quick response. I made those adjustments now I'm getting
invalid literal for int() with base 10: '2019-01-02 02:22:09.745917
. What can I do to fix that?– spidey677
Jan 2 at 2:28
Thanks for the quick response. I made those adjustments now I'm getting
invalid literal for int() with base 10: '2019-01-02 02:22:09.745917
. What can I do to fix that?– spidey677
Jan 2 at 2:28
Can you show the full traceback (as an update to the question, properly formatted).
– Daniel Roseman
Jan 2 at 2:33
Can you show the full traceback (as an update to the question, properly formatted).
– Daniel Roseman
Jan 2 at 2:33
Forgive me for being new to django but how do I do that exactly?
– spidey677
Jan 2 at 2:53
Forgive me for being new to django but how do I do that exactly?
– spidey677
Jan 2 at 2:53
I don't understand your comment. Update the question with the full error traceback.
– Daniel Roseman
Jan 2 at 3:02
I don't understand your comment. Update the question with the full error traceback.
– Daniel Roseman
Jan 2 at 3:02
Looks like after I cleared
db.sqlite3
the error went away. How do i check that the signal is being called on creation?– spidey677
Jan 2 at 4:39
Looks like after I cleared
db.sqlite3
the error went away. How do i check that the signal is being called on creation?– spidey677
Jan 2 at 4:39
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54000304%2fdjango-onetoonefield-not-populating-in-admin%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Does the
CustomUser
model have a method called__str__
defined in it?– xyres
Jan 2 at 2:06
@xyres No it does not, I just added the models.py where
CustomUser
is located. Any suggestions?– spidey677
Jan 2 at 2:19
1
Don't worry about it.
AbstractUser
already has this method and soCustomUser
model automatically inherits it from there. I think the answer posted by Daniel Roseman would solve your issue.– xyres
Jan 2 at 2:25
@xyres Sounds good. Thank you.
– spidey677
Jan 2 at 2:57