initial movies app

This commit is contained in:
2026-02-28 13:04:19 -05:00
parent b1c9b88de1
commit fc715c3ced
15 changed files with 197 additions and 1 deletions

9
apps/movies/admin.py Normal file
View File

@@ -0,0 +1,9 @@
from django.contrib import admin
from .models import MediaFormat, Movie
# Register your models here.
# Register your models here.
admin.site.register(Movie)
admin.site.register(MediaFormat)