| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 4 months |
| seen | yesterday | |
| stats | profile views | 69 |
|
May 21 |
answered | Django-allauth: FB connect working with oauth2, but not with js-sdk |
|
May 16 |
awarded | Nice Answer |
|
May 6 |
reviewed | No Action Needed Class Initialization with Faker Gem |
|
May 6 |
reviewed | No Action Needed herokuapp subdomain not shown externally |
|
May 6 |
reviewed | No Action Needed Saving as .xlsx in different directory in vba |
|
May 6 |
reviewed | No Action Needed unable to move a UIlabel in a xib programmatically |
|
May 6 |
answered | Override clean_email() method in Django-allauth |
|
May 3 |
comment |
Is there any django package providing support for social auth along with the custom user model introduced in Django 1.5? Please let me know what issues are you running in to with django-allauth, simply file a github issue for things you encounter. Custom user models are supposed to be fully supported... |
|
Apr 25 |
comment |
Implementing Ajax requests / response with django-allauth You can inspect the response to your $.post/ajax call, extract the form html (containing the validation errors), and replace your original form. Something like: $("...oldForm...")).replaceWith($(ajaxresponse).find("form")). Detecting the login success URL redirect may become a bit messy, you would need to detect that you end up at the login redirect url. Overriding the views to return structured JSON data is cleaner though. Then again, why go through the trouble of trying to ajaxify this -- sites like Twitter don't do this either. |
|
Apr 23 |
answered | Implementing Ajax requests / response with django-allauth |
|
Apr 2 |
answered | How do we use Django-allauth with lazysignup |
|
Mar 20 |
comment |
On Success URL redirect not working for custom view in django-allauth The super form_valid is where the success URL is used: github.com/pennersr/django-allauth/blob/… As you can see the success URL is retrieved (which should invoke your method), and then passed to complete_signup, which in turn invokes perform_login (github.com/pennersr/django-allauth/blob/…). Your URL should be passed all the time end should end up being used as the redirect URL. Add prints or step through to confirm this. |
|
Mar 19 |
reviewed | No Action Needed jquery tag cloud not working |
|
Mar 19 |
reviewed | No Action Needed How to sort a list object (int) in java? |
|
Mar 18 |
reviewed | No Action Needed (Solved) How to search for multiple sub-strings in a single query |
|
Mar 18 |
reviewed | No Action Needed how to integrate jbootstrap to joomla cms |
|
Mar 18 |
reviewed | No Action Needed Calculation in oracle using SQL |
|
Mar 18 |
reviewed | No Action Needed Interact with Android Setup Wizard |
|
Mar 18 |
comment |
On Success URL redirect not working for custom view in django-allauth Just to be sure: did you alter the standard url routing such that the signup view is actually using your signup view and not the standard one? I would suggest you put a breakpoint ( import pdb; pdb.set_trace()) in your method to see if it gets invoked. If it is invoked you can step through the code to see where things go wrong. I am interested in hearing the outcome... |
|
Mar 15 |
revised |
Django: SocialApp matching query does not exist edited tags |