Giter VIP home page Giter VIP logo

Comments (6)

rockymeza avatar rockymeza commented on June 22, 2024

Also, there is some help_text:

https://github.com/django/django/blob/master/django/contrib/auth/forms.py#L272

from django-authtools.

SpaceK33z avatar SpaceK33z commented on June 22, 2024

When trying to use authtools with Django 1.9 I get the following error:

django.core.management.base.SystemCheckError: SystemCheckError: System check identified some issues:

ERRORS:
<class 'files.admin.UserAdmin'>: (admin.E108) The value of 'list_display[2]' refers to 'name', which is not a callable, an attribute of 'UserAdmin', or an attribute or method on 'auth.User'.

Is this ticket related to that error?

from django-authtools.

gavinwahl avatar gavinwahl commented on June 22, 2024

I don't think that's related. Can you open another issue with the value of AUTH_USER_MODEL and files.admin.UserAdmin?

from django-authtools.

raratiru avatar raratiru commented on June 22, 2024

At first glance, the mechanism without the help text, seems like it will work modifying the clean_password2 in forms.py:

Django method vs authtools method

At second glance, care should be taken for the USERNAME_FIELD which is different in EmailUser and NameUser classes. Except if self.cleaned_data.get('username') automatically fetches the relevant field.

I will give it a try, when I am not at work...

from django-authtools.

elnygren avatar elnygren commented on June 22, 2024

I am currently using this solution, which should be easy to adapt for authtools

from authtools.forms import UserCreationForm
from django.contrib.auth.password_validation import validate_password

class SignupForm(UserCreationForm):
    class Meta:
        model = User
        fields = [
            'name',
            'email',
            'password1',
            'password2'
        ]

    def clean_password1(self):
        validate_password(self.cleaned_data.get('password1'))

from django-authtools.

xkill avatar xkill commented on June 22, 2024

Same problem on Django 1.10.6

from django-authtools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.