IT FINALLY CLICKED, added logic behind uploads

This commit is contained in:
Yamozha
2021-02-05 03:18:16 +02:00
parent b3195368ee
commit 348a0a09bc
17 changed files with 147 additions and 7 deletions

View File

@ -1,3 +1,5 @@
from django.contrib import admin
from .models import upload_image, upload_video
# Register your models here.
admin.site.register(upload_image)
admin.site.register(upload_video)