Commit a76fd944 by Clinton Blackburn

Merge pull request #7410 from edx/clintonb/course-mode-admin

Added SKU column to CourseMode table in Django admin
parents 321544ef 9436eacb
......@@ -65,7 +65,7 @@ class CourseModeAdmin(admin.ModelAdmin):
search_fields = ('course_id',)
list_display = (
'id', 'course_id', 'mode_slug', 'mode_display_name', 'min_price',
'suggested_prices', 'currency', 'expiration_date', 'expiration_datetime_custom'
'suggested_prices', 'currency', 'expiration_date', 'expiration_datetime_custom', 'sku'
)
def expiration_datetime_custom(self, obj):
......
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