Kevin Earl Denny

Results 5 comments of Kevin Earl Denny

I'm having some trouble with this simple example as well. No errors displayed to console, but the slider doesn't display for me

I'm having this same issue when using this package with the Django REST Framework and Django-REST-JWT. See below for settings.py: ``` INSTALLED_APPS = [ .... 'rest_framework', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions',...

@audiolion Thank you for the prompt response, however I'm not sure how to leverage this to fix the issue. From [the Django documentation](https://docs.djangoproject.com/en/1.10/topics/auth/default/#authentication-in-web-requests) (I'm running 1.10.5), it seems that is_authenticated...

@audiolion see below for debugging results. Seems to be something else that is causing the actor to be saved as system. -> if hasattr(request, 'user') and hasattr(request.user, 'is_authenticated') and request.user.is_authenticated():...

The username is my username (kdenny): -> if hasattr(request, 'user') and hasattr(request.user, 'is_authenticated') and request.user.is_authenticated(): (Pdb) print(request.user) kdenny