В рамках проекта Django я создал следующее в views.py файле
def profile(request):
u_form =UserUpdateForm()
p_form =ProfileUpdateForm()
context={
'u-form': u_form,
'p-form': p_form
}
Я сейчас пытаюсь отобразить эти формы на html-странице (profile.html) со следующим кодом:
{% extends "socialmedia/base.html" %}
{% load crispy_forms_tags %}
{% block content %}
<div class="content-section">
<div class="media">
<img class="rounded-circle account-img" src="{{ user.profile.image.url }}">
<div class="media-body">
<h2 class="account-heading">{{ user.username }}</h2>
<p class="text-secondary">{{ user.email }}</p>
</div>
</div>
<form method="POST" enctype="multipart/form-data>
{% csrf_token %}
<fieldset class="form-group">
<legend class="border-bottom mb-4">Profile Information</legend>
{{u_form|crispy}}
{{p_form|crispy}}
</fieldset>
<div class="form-group">
<button class="btn btn-outline-info" type="submit">Update....</button>
</div>
</form>
</div>
{% endblock content %}
Все остальное корректно отображается на странице, кроме этого бита:
{{u_form|crispy}}
{{p_form|crispy}}
Нет ошибокпри запуске сервера, так что мне трудно снимать проблемы.
Код в файле forms.py выглядит следующим образом:
from django import forms
from django.contrib.auth.models import User
from django.contrib.auth.forms import UserCreationForm
from .models import Profile
class UserRegisterForm(UserCreationForm): #form that inherits from the usercreationform
email = forms.EmailField()
class Meta:
model = User
#when this form validates it creates a new user
#type the fields to be shown on your form, in that order.
fields = ['username','email','password1','password2']
"""this gives us a nested name space for configurations and
keeps the configs in one place. The model that will be affected is
the user model e.g. when we do a form.save it saves it to the user model.
And the fields we have are the fields we want on the form. It shows order too.
"""
#create a model form...this allows us to create a form that#works with a specific database model#
#we want a form that works with our user model
class UserUpdateForm(forms.ModelForm):
email = forms.EmailField()
class Meta:
model = User
fields = ['username','email']
class ProfileUpdateForm(forms.ModelForm):
class Meta:
model= Profile
fields=['image']
Мой вопрос:
Может кто-нибудь сказать мне, почему эти дополнительныеполя (имя пользователя, адрес электронной почты и обновление изображения) не отображаются в профиле html над кнопкой «обновить»?В каком файле я допустил ошибку.Примечание: я также был бы признателен за объяснение рендеринга этих u-форм вместе с решением (указав на мою ошибку).Я понимаю, что u-форма является экземпляром UserUpdateForm, но не более того.