diff options
author | luxagraf <sng@luxagraf.net> | 2024-06-29 09:08:09 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-06-29 09:08:09 -0500 |
commit | 32b9c971ec7c986ee738cd26f2c630d794a11469 (patch) | |
tree | 65cb0055d0fa92f93a2924cfd5a2df903f588a64 | |
parent | 1856a1ff421db78612f5e4b1d8286d577b90689a (diff) |
media: fixed map for video uploads
-rw-r--r-- | app/media/admin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/media/admin.py b/app/media/admin.py index 5ee71a5..2ccce29 100644 --- a/app/media/admin.py +++ b/app/media/admin.py @@ -1,5 +1,6 @@ from django.contrib import admin from django import forms + from .models import LuxImage, LuxGallery, LuxImageSize, LuxVideo from django.shortcuts import render from django.contrib.admin import helpers @@ -13,7 +14,7 @@ class LuxImageSizeAdmin(admin.ModelAdmin): @admin.register(LuxVideo) -class LuxVideoAdmin(admin.ModelAdmin): +class LuxVideoAdmin(OLAdminBase): pass |