Add admin form to be able to edit the profiles
This commit is contained in:
parent
544649a516
commit
d22a7c296f
|
|
@ -1,3 +1,8 @@
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
# Register your models here.
|
from vbv_lernwelt.learnpath.models import CourseProfile
|
||||||
|
|
||||||
|
|
||||||
|
@admin.register(CourseProfile)
|
||||||
|
class CourseProfileAdmin(admin.ModelAdmin):
|
||||||
|
pass
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue