...
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/dispatch/dispatcher.py", line 189, in send
response = receiver(signal=self, sender=sender, **named)
File "/edx/app/edxapp/edx-platform/common/djangoapps/student/models.py", line 1783, in enforce_single_login
user.profile.set_login_session(key)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/db/models/fields/related.py", line 483, in __get__
self.related.get_accessor_name()
RelatedObjectDoesNotExist: User has no profile.
sudo -u www-data /edx/bin/python.edxapp ./manage.py lms --settings aws create_user -s -p edx -e some_sta...@example.com
sudo -u www-data /edx/bin/python.edxapp ./manage.py lms --settings aws changepassword some_staff_member
sudo -u www-data /edx/bin/python.edxapp ./manage.py lms --settings aws shell
from django.contrib.auth.models import User
staff = User.objects.get(username="some_staff_member")
staff.is_staff = True
staff.save()--
You received this message because you are subscribed to the Google Groups "General Open edX discussion" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/1e3f394c-846a-4585-9fb8-d8585c02804f%40googlegroups.com.
This is probably a ridiculous question, but whenever I see "Instructor dashboard" in the docs, is that the same as the Django Administration panel?

--
You received this message because you are subscribed to the Google Groups "General Open edX discussion" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/cb1f696b-2443-43fe-984f-ba6f7dda0610%40googlegroups.com.