Re: django registration custom backend

2012-10-27 Thread Bill Freeman
If I were doing this, I would create a view, written (or decorated) to require a new permission (or allowing superuser without the permission) to use, containing a form to collect minimal information, certainly email and username, probably also human name. The form class would have validation

django registration custom backend

2012-10-27 Thread Ian Foote
Hi, I'm trying to write a custom backend for django registration. (http://docs.b-list.org/django-registration/0.8/backend-api.html) I'm using python 2.7 and django 1.4. What I want is for an existing user with suitable permissions to be able to register accounts for new users. The new user