django-registration
Using .update() to add additional fields to django-registration?
I added the additional fields first_name and last_name to django-registration, and got it working the following way --[详细]
2023-03-05 21:24 分类:问答Django fields in django-registration
I am setting up 开发者_开发问答django registration, and I came across this piece of code in the RegistrationForm --[详细]
2023-03-05 19:18 分类:问答django-registration Email Customizations
I am using django-registration, and have two questions with regards to customizing the email sent after a user has requested to reset his password.[详细]
2023-03-05 18:37 分类:问答Django-registration setup without password
I am trying to make a website, where people only put their email addresses and they are logged in with cookies and all. At a later stage, i will ask them provide password and names, but NO username wi[详细]
2023-03-02 12:59 分类:问答Django email app broken lines - maximum line length (and how to change it)?
# settings.py EMAIL_BACKEND = \'django.core.mail.backends.filebased.EmailBackend\' # view.py from django.core.mail import send_mail[详细]
2023-03-01 18:21 分类:问答Django-registration clears all fields if any of them invalid
I\'ve created a registration system using django-registration. I have extended the RegistrationFormTermsOfService as shown below. It all works fine except if any field is invalid the page is refreshed[详细]
2023-03-01 17:12 分类:问答django-registration auto create UserProfile
I\'m using django-registration and I\'m trying to connect to its signals to automatically create a UserProfile.[详细]
2023-02-25 05:56 分类:问答how to change default django-registration Model used in its form?
django-registration use auth User model in its form, but i want to use, class Person( User ): dob= models.DateField(\'Date of Birth\', blank=True, null=True)[详细]
2023-02-16 20:34 分类:问答Django-registration ImportError: No module named signals
I am trying to write a signal listener for django-registration and I am getting the import error: no module named signals. But I could import registration.[详细]
2023-02-15 12:27 分类:问答django extends different base templates
I understand we can use \"extends variable\" in the template to switch between two different extended templates.[详细]
2023-02-14 02:19 分类:问答