add party model

This commit is contained in:
behruz-dev
2025-08-21 10:17:59 +05:00
parent 15ef725e91
commit 7e2e62d48c
6 changed files with 104 additions and 2 deletions

View File

@@ -1,2 +1,3 @@
from .order import *
from .offer import *
from .offer import *
from .party import *

View File

@@ -0,0 +1,9 @@
from django.contrib import admin
from core.apps.orders.models import Party
@admin.register(Party)
class PartyAdmin(admin.ModelAdmin):
list_display = ['mediator', 'delivery_date', 'payment_date']