4

Django Gives an error message

forms.py:

from django import forms
from django.contrib.auth import authenticate, get_user_model, login, logout
from django.contrib.auth.forms import UserCreationForm

User = get_user_model


class UserLoginForm(forms.Form):
    username = forms.CharField()
    password = forms.CharField(widget=forms.PasswordInput)

    def clean(self, *args, **kwargs):
        username = self.cleaned_data.get("username")
        password = self.cleaned_data.get("password")
        user = authenticate(username=username, password=password)
        #user_qs = User.objects.filter(username=username)
        #if user_qs.count() == 1:
        #   user = user_qs.first()
        if username and password:
            user = authenticate(username=username, password=password)
            if not user:
                raise forms.ValidationError("This user does not exist.")
            if not user.check_password(password):
                raise forms.ValidationError("Incorrect password.")
            if not user.is_active:
                raise forms.ValidationError("User is not active.")
        return super(UserLoginForm, self).clean(*args, **kwargs)


class InceptionForm(forms.ModelForm):
    email2 = forms.EmailField(label='Confirm Email')
    class Meta:
        model = User
        fields = ('username', 'email', 'password1', 'password2')

an error occurs due to class InceptionForm().

Error:

AttributeError: 'function' object has no attribute '_meta'

Arekkusuva
  • 43
  • 1
  • 5

2 Answers2

12

You've set User equal to the function get_user_model. You need to set it to the result of calling that function:

User = get_user_model()
Daniel Roseman
  • 588,541
  • 66
  • 880
  • 895
0

This library generates user model form:

from django.cotrib.auth import get_user_model

Connecting the auth user to user_model_form:

User = get_user_model()
RJ Adriaansen
  • 9,131
  • 2
  • 12
  • 26
Manu John
  • 1
  • 1