feat(evaluation): baholash modellari yaratildi (auto, ko'chmas mulk, ko'char mulk, tezkor, hisobot)
This commit is contained in:
@@ -3,5 +3,6 @@ from .customer import * # noqa
|
||||
from .movable import * # noqa
|
||||
from .quick import * # noqa
|
||||
from .real_estate import * # noqa
|
||||
from .report import * # noqa
|
||||
from .valuation import * # noqa
|
||||
from .vehicle import * # noqa
|
||||
|
||||
10
core/apps/evaluation/forms/report.py
Normal file
10
core/apps/evaluation/forms/report.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django import forms
|
||||
|
||||
from core.apps.evaluation.models import EvaluationReportModel
|
||||
|
||||
|
||||
class EvaluationreportForm(forms.ModelForm):
|
||||
|
||||
class Meta:
|
||||
model = EvaluationReportModel
|
||||
fields = "__all__"
|
||||
Reference in New Issue
Block a user