mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-03-17 13:50:23 +00:00
12 lines
208 B
Python
12 lines
208 B
Python
from django.contrib import admin
|
|
|
|
from embed_video.admin import AdminVideoMixin
|
|
|
|
from .models import Post
|
|
|
|
|
|
class PostAdmin(AdminVideoMixin, admin.ModelAdmin):
|
|
pass
|
|
|
|
|
|
admin.site.register(Post, PostAdmin)
|