Looking for an exciting Django project to apply my skills

2023-07-01 Thread s.alaoui youssef
Passionate and experienced developer seeking an engaging Django project to apply my skills and take on new challenges. With a strong background in web development and a deep expertise in Django, I am capable of designing and implementing robust and scalable web applications. I am familiar with

Re: AttributeError at /auth/users/

2023-07-02 Thread s.alaoui youssef
class User(AbstractUser): . objects = UserManager() we have to create User class and specify as objects your UserManager Le dimanche 2 juillet 2023 à 02:10:58 UTC+1, Muhammad Juwaini Abdul Rahman a écrit : > What's your code in urls.py for `/auth/user`? > > On Sunday, 2 July 20

Re: AttributeError at /auth/users/

2023-07-02 Thread s.alaoui youssef
Hi you have to create class User(AbstractUser) class User(AbstractUser): ... objects = UserManager() and add objects with your UserManager Le samedi 1 juillet 2023 à 18:14:53 UTC+1, arun n a écrit : > Hello, > > I am new to Django. I am getting the below error. Can someone help. > > fr