feat: avto va tezkor baholash uchun history bo'limi qo'shildi
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from .auto import * # noqa
|
||||
from .customer import * # noqa
|
||||
from .document import * # noqa
|
||||
from .history import * # noqa
|
||||
from .movable import * # noqa
|
||||
from .quick import * # noqa
|
||||
from .real_estate import * # noqa
|
||||
|
||||
17
core/apps/evaluation/forms/history.py
Normal file
17
core/apps/evaluation/forms/history.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from django import forms
|
||||
|
||||
from core.apps.evaluation.models import AutoevaluationhistoryModel, QuickevaluationhistoryModel
|
||||
|
||||
|
||||
class AutoevaluationhistoryForm(forms.ModelForm):
|
||||
|
||||
class Meta:
|
||||
model = AutoevaluationhistoryModel
|
||||
fields = "__all__"
|
||||
|
||||
|
||||
class QuickevaluationhistoryForm(forms.ModelForm):
|
||||
|
||||
class Meta:
|
||||
model = QuickevaluationhistoryModel
|
||||
fields = "__all__"
|
||||
Reference in New Issue
Block a user