Commit 575d82d9 by Cole Rogers

Registered the CreditPathway model in Django admin

parent 5325dc5c
......@@ -176,6 +176,11 @@ class ProgramAdmin(admin.ModelAdmin):
'js/sortable_select.js')
@admin.register(CreditPathway)
class CreditPathwayAdmin(admin.ModelAdmin):
list_display = ('name', 'org_name', 'email')
@admin.register(ProgramType)
class ProgramTypeAdmin(admin.ModelAdmin):
list_display = ('name', '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