Dan F
Dan F
FYI I also want exactly this: enable social login, disable regular login. I am reading this thread, and upvoting the related PR. Thanks for your work on this project.
> I decided to override forms to disable password and email managements as mentioned: @pincoin - how did you hook these objects into the django-allauth flow?
What do you all think of overriding the URLs themselves? So for example, adding entries like these to urls.py before including allauth.urls: ``` from django.urls import path, re_path from django.views.generic...
FYI, if using the new package could fix this, you could change requirements.txt as follows: ``` diff --git a/requirements.txt b/requirements.txt index 252a01e..fac124e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,8...
GeoIP requires libGeoIP. See https://github.com/maxmind/geoip-api-python/issues/20. Here are some instructions to install that (in the docker image I started): apt update apt -y install software-properties-common dirmngr apt-transport-https lsb-release ca-certificates cd /root...
Note even after installing libGeoIP and GeoIP, the `test_loganalyzer` test fails with some other issue: ``` self = , name_or_url = None kwargs = {'connect_args': {}}, u = None def...
@sds-dubois - any suggestions? It looks like you used GA2Ms in #7.
FYI my issue is intermingling HTML and Django template language, e.g., ``` {% if something %} {% endif %} {# 100 lines of template #} {% if something %} {%...
How? I tried `monitor(window, "keydown")` in the chrome debugger and typed in the window. Nothing. I tried `monitor(document, "keydown")`, same thing. I tried `monitor(window, "click")` and clicked on the button....