Re: Trouble adding users through admin site

2018-06-10 Thread Dylan Moreland
Ah, perfect! I was inheriting from django.contrib.admin.ModelAdmin instead of django.contrib.auth.admin.UserAdmin. That worked. Thanks so much! Dylan Moreland Industrial Engineering Student California Polytechnic State University, San Luis Obispo > On Jun 9, 2018, at 17:30, Daniel Germano Travie

Re: Trouble adding users through admin site

2018-06-09 Thread Daniel Germano Travieso
Hello Dylan You will never see a user password as a raw text on django (only maybe if you intercept the request the user creation form sent to the django view that handles the creation) User passwords are stored as their appropriate hash, and you can just use the add user admin page to add a new