add new model and change offer models

This commit is contained in:
behruz-dev
2025-08-20 13:19:55 +05:00
parent aa5ff56216
commit 4c3630aca2
17 changed files with 173 additions and 8 deletions

View 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']