Been working a lot with AngularJS and Django recently. To make them play nicely together one of the first things you need to do in your Angular App is to enable CSRF support and send X-Requested-With header, do it like this:
- varapp=angular.module('AppName',[]);
- app.config(['$httpProvider' ...