From 82a7a79264e4667124d73c8eda00a6c44d69bb8a Mon Sep 17 00:00:00 2001 From: Simon Chen Date: Fri, 7 Jul 2017 16:05:26 -0400 Subject: [PATCH] Update the admin table to allow the insert of course cert settings LEARNER-1787 --- lms/djangoapps/certificates/admin.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lms/djangoapps/certificates/admin.py b/lms/djangoapps/certificates/admin.py index 076e28d39c..39e5b8d420 100644 --- a/lms/djangoapps/certificates/admin.py +++ b/lms/djangoapps/certificates/admin.py @@ -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