使用 {{ form }} 标记的 Django 表单未显示在模板中

Django form not showing up in template using {{ form }} tag

我为我的练习制作了一个基本的待办事项应用程序,我想在其中为每个用户创建一个个人资料页面。 我制作了一个配置文件模型,并将其连接到用户信号,配置文件已经创建,但是当我在模板中渲染它时,它没有显示配置文件表单。

配置文件模型的形式是 form.py:

class ProfileForm(ModelForm):
    class Meta:
        model = Profile
        fields = '__all__'
        exclude = ['user']

model.py --资料型号:

class Profile(models.Model):
    user = models.OneToOneField(User, on_delete=models.CASCADE, null=True, blank=True)
    name = models.CharField(max_length=200, null=True, blank=False)
    email = models.EmailField(max_length=200, null=True)
    phone = models.CharField(max_length=40, null=True, blank=True)
    image = models.ImageField(null=True, blank=True, default='pfp.png', upload_to='images')
    date_created = models.DateField(auto_now_add=True)
    
    def __str__(self):
        return self.user.username

渲染配置文件的视图(注意:我不是在创建编辑配置文件表单,稍后我会这样做,这就是我使用 get in 方法的原因):

def user_profile(request):
    profile = request.user.profile
    form = ProfileForm(instance=profile)
    
    context = {'form': form}
    return render(request, 'task/profile.html')

个人资料页面模板:

{% extends 'main.html' %}

{% load crispy_forms_tags %}
{% block content %}

<h3>Profile Page</h3>

<style>
    .profile-pic{
        max-width: 200px;
        max-height: 200px;
        margin: 0 auto;
        border-radius: 50%;
    }
    body{
        background-color: rgba(211, 211, 211, 0.527);
    }
</style>

<br>
<div class="row">
    <div class="col-md-3">
        <div class="card card-body">
            <a class="btn btn-warning" href="{% url 'home' %}">Back to home page</a>
            <hr>
            <h3 style="text-align: center">Account Settings</h3>
            <hr>
            <img src="{{ user.profile.image.url }}" alt="" class="profile-pic">
        </div>
    </div>
<form action="" method="get" enctype="multipart/form-data">
    {% csrf_token %}
    {{ form|crispy }}

    <input type="submit" class="btn btn-primary" name=" Update Information">
</form>

{% endblock content %}

我哪里做错了

您需要将上下文传递给渲染引擎:

def user_profile(request):
    profile = request.user.profile
    form = ProfileForm(instance=profile)
    
    context = {'form': form}
    #                              add the context 🖟
    return render(request, 'task/profile.html', <strong>context</strong>)