Top "Django-registration" questions

Django-registration is a pluggable django app designed to make allowing user signups as painless as possible.

CSRF verification failed. Request aborted. on django

I am following Django 1.3 Web Development. and for logins, i am getting the following error Forbidden (403) CSRF verification failed. Request …

django django-views django-registration
Get user information in django templates

What's the best way to get user information from a django template? For example, if I just want to: If …

django django-authentication django-registration
Reverse for 'index' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []

I'm trying to get django-register to work on my website but I keep getting this error which I do not …

python django python-3.3 django-registration django-1.6
Django - Create user profile on user creation

I'm following Django documentation here in order to achieve a simple objective: Create a user profile as soon as a …

django django-registration user-profile
Creating a extended user profile

I have an extended UserProfile model in django: class UserProfile(models.Model): user = models.ForeignKey(User, unique=True) #other things …

django django-registration
How to get Django view to return form errors

This is my view: def main_page(request): if request.method == 'POST': form = RegistrationForm(request.POST) if form.is_valid(): …

django forms django-views django-authentication django-registration
Already Registered at /appname/: The model User is already registered

I'm trying to connect the django.contrib.auth User with my own UserProfile, and I'm getting an 'AlreadyRegistered' error when …

python django django-registration
Removing help_text from Django UserCreateForm

Probably a poor question, but I'm using Django's UserCreationForm (slightly modified to include email), and I would like to remove …

python django django-models django-registration
Django - authentication, registration with email confirmation

I'm looking at the API for authentication https://docs.djangoproject.com/en/1.3/topics/auth/ I can't seem to find information …

python django authentication django-registration
Django-Registration: Email as username

How do I use emails instead of username for authentication using django-registration. Further how do I enforce this change once …

django django-registration