Commit 1650813d by Michael Terry

Avoid a dropdown for course runs

Entitlement detail pages in django admin normally show a dropdown
button for the enrollment_course_run field. But on stage, that can
cause a timeout because the enrollment database is so large.
So instead, just show it as a raw id field.
parent 9f921bf6
...@@ -14,6 +14,7 @@ class CourseEntitlementAdmin(admin.ModelAdmin): ...@@ -14,6 +14,7 @@ class CourseEntitlementAdmin(admin.ModelAdmin):
'mode', 'mode',
'enrollment_course_run', 'enrollment_course_run',
'order_number') 'order_number')
raw_id_fields = ('enrollment_course_run', 'user',)
@admin.register(CourseEntitlementPolicy) @admin.register(CourseEntitlementPolicy)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment