movable-model qoshildi bu (Ko'char mulk) modeli to'liq va optimallashgan holda tayyor!
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
from .auto import * # noqa
|
||||
from .customer import * # noqa
|
||||
from .movable import * # noqa
|
||||
from .real_estate import * # noqa
|
||||
from .valuation import * # noqa
|
||||
from .vehicle import * # noqa
|
||||
|
||||
12
core/apps/evaluation/admin/movable.py
Normal file
12
core/apps/evaluation/admin/movable.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.contrib import admin
|
||||
from unfold.admin import ModelAdmin
|
||||
|
||||
from core.apps.evaluation.models import MovablePropertyEvaluationModel
|
||||
|
||||
|
||||
@admin.register(MovablePropertyEvaluationModel)
|
||||
class MovablepropertyevaluationAdmin(ModelAdmin):
|
||||
list_display = (
|
||||
"id",
|
||||
"__str__",
|
||||
)
|
||||
Reference in New Issue
Block a user