feat: added promocode creation and view

This commit is contained in:
ITQ
2025-01-21 18:44:45 +03:00
parent 36275caf40
commit 5ff66261c3
22 changed files with 813 additions and 56 deletions
+6
View File
@@ -0,0 +1,6 @@
from django.contrib import admin
from apps.promo.models import Promocode, PromocodeTarget
admin.site.register(Promocode)
admin.site.register(PromocodeTarget)