Add admin form to be able to edit the profiles

This commit is contained in:
Ramon Wenger 2024-07-15 16:40:16 +02:00 committed by Christian Cueni
parent 544649a516
commit d22a7c296f
1 changed files with 6 additions and 1 deletions

View File

@ -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