add party model
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
from .order import *
|
||||
from .offer import *
|
||||
from .offer import *
|
||||
from .party import *
|
||||
9
core/apps/orders/admin/party.py
Normal file
9
core/apps/orders/admin/party.py
Normal 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']
|
||||
|
||||
Reference in New Issue
Block a user