编辑配置文件给我Django中的算法,迭代和哈希

时间:2017-11-22 11:05:13

标签: python django passwords

当我转到我的"编辑个人资料"这是它的样子:

enter image description here

所以它向我展示了算法,迭代和哈希。如果我想从我的forms.py(删除密码)中删除它:

class EditProfileForm(UserChangeForm):
    template_name='/something/else'

    class Meta:
        model = User
        fields = (
            'email',
            'first_name',
            'last_name',
            **'password'**
        )


它告诉我这个:

enter image description here

随意分享您的想法。

1 个答案:

答案 0 :(得分:0)

我将代码格式forms.py更改为edit_profile.html中的可编辑代码(从条目form.py获取条目):

edit_profile.html:

memcpy