init commit

This commit is contained in:
Trey t
2024-06-23 22:51:58 -05:00
commit ddf67a4fc5
315 changed files with 163458 additions and 0 deletions

11
video/admin.py Normal file
View File

@@ -0,0 +1,11 @@
from django.contrib import admin
from .models import Video, ExerciseVideo
# Register your models here.
@admin.register(Video)
class VideoAdmin(admin.ModelAdmin):
list_display = ("video_file", "gender",)
@admin.register(ExerciseVideo)
class ExerciseVideoAdmin(admin.ModelAdmin):
list_display = ("video_file",)