我感到分开用户模型和用户填充模型,从而生成两个单独的视图和应用程序。它适用于用户,但对用户填充不适用,我将UserChangeform与用户和表单一起使用。我正在尝试使用UpdateView,因此用户可以查看并更新他的信息。代码:
#user profile models file
from django.db import models
from easyinstall import settings
class UserProfile(models.Model):
user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
picture = models.ImageField(upload_to='uploads/profile_images', blank=True)
bio = models.TextField(max_length=500, blank=True)
location = models.CharField(max_length=30, blank=True)
birth_date = models.DateField(null=True, blank=True)
website = models.URLField(blank=True)
timestamp = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
class Meta:
verbose_name_plural = 'users profiles'
def __str__(self):
return self.user.username
用户填充表单
from django import forms
from .models import UserProfile
class EditProfileForm(forms.ModelForm):
class Meta:
model = UserProfile
fields = ('picture', 'bio', 'location', 'birth_date', 'website',)
用户填充视图
from .models import UserProfile
from django.views.generic import UpdateView
from django.urls import reverse_lazy
from .forms import EditProfileForm
class ProfileUpdateView(UpdateView):
model = UserProfile
form_class = EditProfileForm
template_name = 'profiles/profileupdate.html'
success_urls = reverse_lazy('profiles')
pk_url_kwarg = 'UserProfile_pk'
context_object_name = 'UserProfile'
我真的坚持使用" PK"的东西,如何获得用户配置文件的PK并使用它?可以在配置文件表中使用ID和user_id吗?
友善,查看模板:
{% load socialaccount %}
<h1>Django Allauth Tutorial</h1>
{% if user.is_authenticated %}
<p>Welcome {{ user.username }} !!!</p>
<li><a href="{% url 'settings' %}">change settings</a></li>
<li><a href="{% url 'profile_update' UserProfile_pk=user.pk %}">Edit Profile</a></li>
{% else %}
{% csrf_token %}
<ul>
<li><a href="{% provider_login_url 'linkedin' %}">Sign Up</a></li>
</ul>
{% endif %}
和URL:
from django.urls import path
from .views import UsersList, ProfileUpdateView
urlpatterns = [
path('', UsersList.as_view(), name='profiles'),
path('profile/(?P<UserProfile_pk>d+)/edit/', ProfileUpdateView.as_view(), name='profile_update'),
]
我正在使用django 2.1,python3。
谢谢
您需要使用配置文件的PK链接到编辑视图,而不是用户。
{% url 'profile_update' UserProfile_pk=user.userprofile.pk %}