Commit d613f37d by Simon Chen Committed by GitHub

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

LEARNER-1787 Update the admin table to allow the insert of course cert settings
parents 8816b854 82a7a792
...@@ -64,8 +64,7 @@ class CertificateGenerationCourseSettingAdmin(admin.ModelAdmin): ...@@ -64,8 +64,7 @@ class CertificateGenerationCourseSettingAdmin(admin.ModelAdmin):
""" """
Django admin customizations for CertificateGenerationCourseSetting model Django admin customizations for CertificateGenerationCourseSetting model
""" """
list_display = ('course_key',) list_display = ('course_key', 'enabled')
readonly_fields = ('course_key',)
search_fields = ('course_key',) search_fields = ('course_key',)
show_full_result_count = False show_full_result_count = False
......
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