Commit 0f820f39 by Clinton Blackburn

Updated Program admin

- Filter by program type
- Exposed type in list view

ECOM-5173
parent e20b7a9c
......@@ -35,8 +35,8 @@ class CourseRunAdmin(admin.ModelAdmin):
@admin.register(Program)
class ProgramAdmin(admin.ModelAdmin):
list_display = ('uuid', 'title', 'marketing_slug',)
list_filter = ('partner',)
list_display = ('uuid', 'title', 'marketing_slug', 'type',)
list_filter = ('partner', 'type',)
ordering = ('uuid', 'title',)
readonly_fields = ('uuid',)
search_fields = ('uuid', 'title', 'marketing_slug')
......
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