just showing off, don't merge this!
This commit is contained in:
parent
f7938a9dc1
commit
8b988be06e
8 changed files with 7203 additions and 1 deletions
2
urls.py
2
urls.py
|
@ -12,6 +12,8 @@ urlpatterns = patterns('',
|
|||
url(r'^%s(?P<path>.*)$' % re.escape(settings.STATIC_URL.lstrip('/')), 'django.contrib.staticfiles.views.serve', {'insecure': True}),
|
||||
url(r'^admin/', include(admin.site.urls)),
|
||||
url(r'^login/$', views.login, name='login'),
|
||||
url(r'^me/$', 'githubnetwork.views.me', name='me'),
|
||||
url(r'^ajax/$', 'githubnetwork.views.get_user_followers', name='get_user_followers'),
|
||||
url(r'^$', views.index, name='index'),
|
||||
url(r'', include('social_auth.urls')),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue