Questions tagged [django-allauth]

django-allauth is a set of pluggable django apps for authentication, registration, account management as well as 3rd party (social) account authentication

django-allauth is a set of pluggable django apps for authentication, registration, account management as well as 3rd party (social) account authentication

1673 questions
0
votes
1 answer

Django allauth: empty 'signup_url'

Using django 1.8.16 and package django-allauth==0.27.0 Login works fine, but signup page cannot be reached from login page. The default login template 'login.html' contains a link to a signup page:

{% blocktrans %}If you have not created an…

Davy
  • 1,720
  • 1
  • 19
  • 42
0
votes
1 answer

Move customized django-allauth templates to directory other than 'account'

I set up django-allauth correctly following the project's documentation. I wanted to override the look and feel of the django-allauth templates so I went to the project github and downloaded the django-allauth templates folder into my…
kas
  • 857
  • 1
  • 15
  • 21
0
votes
2 answers

Custom allauth template with Django 1.8

I read many different setup for getting allauth working with django in general, and 1.8 specifically but none is working. here is my current setup with allauth 0.29: TEMPLATES = [ { 'BACKEND' :…
Robert Brax
  • 6,508
  • 12
  • 40
  • 69
0
votes
1 answer

Django allauth custom signup form error: 'Institution' object is not iterable

I'm probably missing something obvious here, but I'm getting the following error: 'Institution' object is not iterable It doesn't like this line in the code: user.institution = institution Here's the full SignupForm class for Django allauth: class…
FlipperPA
  • 13,607
  • 4
  • 39
  • 71
0
votes
2 answers

Django AllAuth Warning

I'm new to Django and installed the AllAuth package and every seems to work fine. I followed different tutorials but each time I execute the command python manage.py runserver I receive a warning: WARNINGS: ?: (1_8.W001) The standalone TEMPLATE_*…
cwhisperer
  • 1,478
  • 1
  • 32
  • 63
0
votes
2 answers

django: extending allauth.account

allauth.account comes with a signup.html {% extends "account/base.html" %} {% load i18n %} {% block head_title %}{% trans "Signup" %}{% endblock %} {% block content %}

{% trans "Sign Up" %}

{% blocktrans %}Already have an account?…

ealeon
  • 12,074
  • 24
  • 92
  • 173
0
votes
1 answer

Django allauth Serialization error custom User model with TimeZoneField

My custom User model have a TimeZoneField: from timezone_field import TimeZoneField class User(AbstractBaseUser, PermissionsMixin): class Meta: verbose_name = _('user') verbose_name_plural = _('users') email =…
Stan Zeez
  • 1,138
  • 2
  • 16
  • 38
0
votes
2 answers

Django-all-auth: language translation doesn't work

I'm Korean and using django-all-auth in my Django Project. I checked that there is Korean .po file in django-all-auth. But all expressions are english, not Korean. I just followed Installation part and Configuration part in doc. And here is my…
user3595632
  • 5,380
  • 10
  • 55
  • 111
0
votes
1 answer

Setting up django-allauth, receive error: Index column size too large

I am attempting to run ./manage.py migrate when installing django-allauth, which always fails with this error: django.db.utils.OperationalError: (1709, 'Index column size too large. The maximum column size is 767 bytes.') I am using MariaDB 10.1.19…
0
votes
1 answer

Django Allauth include signup in different form

I'm using django 1.9.7 and django-allauth to handle my user authentication. I have a contact form that includes several Fields (including the users email address) which are saved as a model in the backend, from there I am using a ModelForm to…
Julian
  • 915
  • 8
  • 24
0
votes
0 answers

Updating Google Calendar using Django-Allauth

I'm using django-allauth to log users in and get a view of their calendars and I want to be able to add appointments. I'm using the following code which is more or less a cut and paste from quickstart.py: from __future__ import print_function import…
HenryM
  • 5,557
  • 7
  • 49
  • 105
0
votes
0 answers

Validation error not showing on form

I'm creating a SignUp form and it displays the validation errors, such as required fields. However, using Django-Crispy-Forms, the validation errors do not appear. I'm customizing the default form from Django-allauth, which raises ValidationError.…
zan
  • 594
  • 2
  • 8
  • 20
0
votes
1 answer

Remove label from SIgnUp form

I'm trying to extend the default form and remove the labels for Django-allauth signup form. Most labels are removed successfully, but I'm not able to remove the label for the email field. forms.py from django import forms from .models import…
zan
  • 594
  • 2
  • 8
  • 20
0
votes
2 answers

error is not displayed in the template

I have used django allauth for user registration and login. I have used the {{ form.has_errors }} in template to show an error but the error is not displayed in the template. What might be the reason for not showing an error in the template? The…
Serenity
  • 3,884
  • 6
  • 44
  • 87
0
votes
0 answers

How to save custom field with Django allauth

I'd like to save custom field in django allauth. I created models and forms to make separate table and I can save the user_id in that table. But I can't save the actual custom field in that table. The table is myApp_userprofile represented by the…
MrKarl
  • 19
  • 1
  • 3
1 2 3
99
100