Commit 50a0e1ab by Awais Jibran

Publisher admin CourseState table changes

EDUCATOR-894
parent df6629de
......@@ -71,8 +71,9 @@ class OrganizationUserRoleAdmin(admin.ModelAdmin):
@admin.register(CourseState)
class CourseStateAdmin(admin.ModelAdmin):
raw_id_fields = ('changed_by',)
list_display = ['name', 'approved_by_role', 'owner_role', 'course', 'marketing_reviewed']
search_fields = ['name']
list_display = ['id', 'name', 'approved_by_role', 'owner_role', 'course', 'marketing_reviewed']
search_fields = ['id', 'course__title']
list_filter = ('name',)
@admin.register(CourseRunState)
......
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