Update the admin table to allow the insert of course cert settings LEARNER-1787

This commit is contained in:
Simon Chen
2017-07-07 16:05:26 -04:00
parent 32618fa0f5
commit 82a7a79264

View File

@@ -64,8 +64,7 @@ class CertificateGenerationCourseSettingAdmin(admin.ModelAdmin):
"""
Django admin customizations for CertificateGenerationCourseSetting model
"""
list_display = ('course_key',)
readonly_fields = ('course_key',)
list_display = ('course_key', 'enabled')
search_fields = ('course_key',)
show_full_result_count = False