Chapter03
Just before I went to 'An Angular service for registering new users' part, I tried to connect to http://localhost:8000/api/v1/account/. There was no problem.
When I tried to register an account, it said "NameError at /api/v1/accounts/ - name 'Response' is not defined". So I added 'from rest_framework.response import Response' on top of the authentication/views.py
Tried again. name 'status' is not defined I put 'from rest_framework import status' in views.py
The third time 'confirm_password' is an invalid keyword argument for this function I can't solve this problem. Maybe it isn't in models.py, but only in serializers.py?
Another issue, it may be the same issue. I wanted to see how does it look it, so I cloned 'https://github.com/brwr/thinkster-django-angular'. I could see the page looked like google+ but "Not Google Plus" :) Registration didn't work.
Having the same issue with "'confirm_password' is an invalid keyword argument for this function"