add new model and change offer models
This commit is contained in:
9
core/apps/counterparty/admin/counterparty.py
Normal file
9
core/apps/counterparty/admin/counterparty.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.contrib import admin
|
||||
|
||||
from core.apps.counterparty.models import Counterparty
|
||||
|
||||
|
||||
@admin.register(Counterparty)
|
||||
class CounterpartyAdmin(admin.ModelAdmin):
|
||||
list_display = ['id', 'name', 'person']
|
||||
|
||||
Reference in New Issue
Block a user