django-social-auth で twitter/facebook/google にログインするためのリンクがあるページだけを作りたいです。
しかし、私はエラーが発生しますNoReverseMatch: Reverse for '' with arguments '(u'twitter',)' and keyword arguments '{}' not found.
def index(request):
ctx = {}
return render_to_response('index_before_login.html', {}, RequestContext(request))
index_before_login.html は次のとおりです
<li><a href="{% url socialauth_begin 'twitter' %}">Enter using Twitter</a></li>
urls.pyは次のとおりです
urlpatterns = patterns('',
url(r'^$', 'lebabcartoon.views.index'),
#url(r'^socialauth_', 'lebabcartoon.views.index'),
url('', include('social_auth.urls')),
私の環境は Django ver1.5 Python Version: 2.7.3 django-social-auth: 0.7.5
何か案は?