thinkster-django-angular icon indicating copy to clipboard operation
thinkster-django-angular copied to clipboard

Code repository for Thinkster.io Django and AngularJS Tutorial

Results 12 thinkster-django-angular issues
Sort by recently updated
recently updated
newest added

I'm not sure if this is being maintained but I paid for the tutorial and during the environment setup I had a 500 Server error pop up instead of the...

custom django-user object has no attribute 'has_module_perms'

I followed every step very precisely and was able to login, but I cannot logout after finishing the logout part.

``` class PostViewSet(viewsets.ModelViewSet): queryset = Post.objects.order_by('-created_at') serializer_class = PostSerializer def get_permissions(self): if self.request.method in permissions.SAFE_METHODS: return (permissions.AllowAny(),) return (permissions.IsAuthenticated(), IsAuthorOfPost(),) def perform_create(self, serializer): instance = serializer.save(author=self.request.user) return super(PostViewSet, self).perform_create(serializer) ```

File "C:\Python27\lib\site-packages\django\contrib\auth\management\commands\createsuperuser.py", line 147, in handle if password.strip() == '': AttributeError: 'NoneType' object has no attribute 'strip'

Just tried to install underscore was missing after bower install. Had to add it to bower.json

the JSON object must be str, not 'bytes' When I am trying to login, I get that error on the response. with response code of 500

on account settings controller, it wont let me access the settings page when I am logged in to an account ``` function activate() { var authenticatedAccount = Authentication.getAuthenticatedAccount(); var username...

In PostsController -> activate function $scope.$watch(function () { return $(window).width(); }, render); do not tracts value of window width. It only looks at width value when one of other watchers...