This commit is contained in:
Trey t
2023-07-14 14:55:15 -05:00
parent 4e1c4777ad
commit c5b577fc1b
14 changed files with 107 additions and 2 deletions

7
video/admin.py Normal file
View File

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