Files
edx-platform/common/djangoapps/entitlements/admin.py
Albert St. Aubin 113e0af104 Added Entitlement API
The Entitlement API will allow for GET, POST, DELETE(Revoke), and
variations of these methods of managing and retrieving data about
Learner Entitlements.
[LEARNER-2661]
2017-11-08 10:03:38 -05:00

17 lines
448 B
Python

from django.contrib import admin
from .models import CourseEntitlement
@admin.register(CourseEntitlement)
class EntitlementAdmin(admin.ModelAdmin):
list_display = ('user',
'uuid',
'course_uuid',
'created',
'modified',
'expired_at',
'mode',
'enrollment_course_run',
'order_number')