Ad uchun api chiqarildi

This commit is contained in:
2025-11-28 16:49:38 +05:00
parent 94f129c446
commit 97e7098b9e
24 changed files with 600 additions and 7 deletions

View File

@@ -2,3 +2,4 @@ from .tags import * # noqa
from .ad_top_plan import * # noqa
from .ad_images import * # noqa
from .ad_variant import * # noqa
from .ad_options import * # noqa

View File

@@ -0,0 +1,12 @@
from django.contrib import admin
from unfold.admin import ModelAdmin
from core.apps.api.models import AdOption
@admin.register(AdOption)
class AdOptionAdmin(ModelAdmin):
list_display = (
"id",
"__str__",
)