On our previous edx-platform version (dogwood) there was a course enrollment
link in django admin under Student
section which we were using to find out in which courses one of our students has enrolled. But it’s not there in hawthon. Do you know if it is moved or deprecated? Is there any other way to approach the answer to this question?
Thanks a lot
1 Like
Hello,
The only thing that occurs to me is that you make the query directly in the mysql.
If I remember correctly, in the LMS, you can go to /support/enrollment to check the enrollemnts of a student (and update them).
1 Like
Hello @mahyard
In django admin, you have to add the waffle switch named “student.courseenrollment_admin” and just mark as active
you will be able to access the course enrollment model from django admin
8 Likes
That’s it. Thank you very much…
Just to add for the historical record, this still seems to work in Nutmeg, and the section is admin/student/courseenrollment/ in Django.