diff --git a/social_auth_widget/templatetags/social_auth_widget.py b/social_auth_widget/templatetags/social_auth_widget.py index ab536bd..5bdf8c9 100644 --- a/social_auth_widget/templatetags/social_auth_widget.py +++ b/social_auth_widget/templatetags/social_auth_widget.py @@ -2,10 +2,10 @@ from django.conf import settings -def social_auth_widget(context): +def social_auth_widget(): return { 'providers': settings.SOCIAL_AUTH_PROVIDERS, } register = template.Library() -register.inclusion_tag('social_auth_widget.html', takes_context=True)(social_auth_widget) +register.inclusion_tag('social_auth_widget.html')(social_auth_widget)