registration and profile cleanup / decrufting
parent
697ee04a43
commit
37a0139e8d
|
@ -3,12 +3,10 @@ south
|
|||
django-extensions
|
||||
https://github.com/toastdriven/django-tastypie/tarball/master
|
||||
requests
|
||||
https://bitbucket.org/ubernostrum/django-registration/get/tip.tar.gz
|
||||
django-social-auth
|
||||
selenium
|
||||
django-nose-selenium
|
||||
nose
|
||||
django-profiles
|
||||
django-kombu
|
||||
django-celery
|
||||
redis
|
||||
|
|
|
@ -189,7 +189,7 @@ USER_AGENT = "unglue.it.bot v0.0.1 <http://unglue.it>"
|
|||
|
||||
SOUTH_TESTS_MIGRATE = True
|
||||
|
||||
AUTH_PROFILE_MODULE = "core.userprofile"
|
||||
AUTH_PROFILE_MODULE = "core.UserProfile"
|
||||
|
||||
GOODREADS_API_KEY = ""
|
||||
GOODREADS_API_SECRET = ""
|
||||
|
|
2
urls.py
2
urls.py
|
@ -10,8 +10,6 @@ urlpatterns = patterns('',
|
|||
(r'^accounts/', include('registration.backends.default.urls')),
|
||||
(r'^socialauth/', include('social_auth.urls')),
|
||||
(r'^api/', include('regluit.api.urls')),
|
||||
('^profiles/edit/$', 'profiles.views.edit_profile', {'form_class': ProfileForm,}),
|
||||
(r'^profiles/', include('profiles.urls')),
|
||||
(r'', include('regluit.frontend.urls')),
|
||||
(r'', include('regluit.payment.urls')),
|
||||
(r'^selectable/', include('selectable.urls')),
|
||||
|
|
Loading…
Reference in New Issue