-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Django allauth logout #36
Comments
Hallo,
The "correct" setting would be:
That, however will call:
Thank you for the report, I will address this issue in the weekend!
The idea for the translation is to use |
Thank you for response. :) I try this, to translate data, and wait for new update with repaired logout link. :) |
Version 1.1.2 is released, the working setting should be:
Is it working? |
I try, but still: 'allauth' is not a registered namespace From what I was looking for information in google, allauth don't have namespace. I use only "account_logout" to create link, without allauth:account_logout |
So, the correct use should be:
Will this work? |
Django still search for namespace. This time when I try, and import reverse: Error appear: I try also: and then error say: |
Please update and try the following settings: DELETE the setting: |
Ok, update is pip install django-letsagree --upgrade yes? Then delete LETSAGREE_LOGOUT_APP_NAME and add LETSAGREE_LOGOUT_URL = 'account_logout' I don't see any error but, when show terms accept page in right top corner logout link is still /admin/logout/ I try also LETSAGREE_LOGOUT_URL = '/account/logout/' Nothing change. |
Version 1.1.5 is released, can you check now? Indeed there was a bug in the code. |
Yes, now works 🥇 Thanks for repair this. :) |
Hi, I try to create logout link with django allauth.
In settings I try:
LETSAGREE_LOGOUT_APP_NAME = 'account_logout'
LETSAGREE_LOGOUT_APP_NAME = 'allauth:account_logout'
LETSAGREE_LOGOUT_APP_NAME = reverse_lazy('allauth')
LETSAGREE_LOGOUT_APP_NAME = reverse_lazy('allauth:account_logout')
But non of this work. Always I see: 'account_logout' is not a registered namespace etc.
How to create correct link?
Second question
How to translate button and checkbox, I must to do this in template? Or somewhere else?
The text was updated successfully, but these errors were encountered: