Merge pull request #15503 from edx/schen/LEARNER-1787

LEARNER-1787 Update the admin table to allow the insert of course cert settings
This commit is contained in:
Simon Chen
2017-07-10 11:13:35 -04:00
committed by GitHub

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