Commit cd40a6d94a4ebabd98866a3f20032e424a533db6
1 parent
a4ed62bf
Exists in
master
and in
39 other branches
Removing django-registration from requirements
Showing
2 changed files
with
0 additions
and
3 deletions
Show diff stats
requirements.txt
src/accounts/urls.py
... | ... | @@ -5,8 +5,6 @@ from .views import UserProfileDetailView, UserProfileUpdateView |
5 | 5 | |
6 | 6 | |
7 | 7 | urlpatterns = patterns('', |
8 | - #url(r'^$', 'accounts.views.signup', name='signup'), | |
9 | - | |
10 | 8 | url(r'^register/$', 'accounts.views.signup', name='signup'), |
11 | 9 | |
12 | 10 | url(r'^(?P<username>[\w@+.-]+)/?$', | ... | ... |