[Fixed]-Socio login in Django

1👍

In point six replace

href="{% url "social:begin" "facebook"%}"

with

href="{% url 'social:begin' 'facebook'%}"

I think you are running into a problem when the first " in "social:begin" ends the " after href=, since ' and " are replaceable you can do this.

Leave a comment