QuickEvaluationModel modeli qoshildi shu tezkor baholash uchun ishatiladi
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from .auto import * # noqa
|
||||
from .customer import * # noqa
|
||||
from .movable import * # noqa
|
||||
from .quick import * # noqa
|
||||
from .real_estate import * # noqa
|
||||
from .valuation import * # noqa
|
||||
from .vehicle import * # noqa
|
||||
|
||||
10
core/apps/evaluation/forms/quick.py
Normal file
10
core/apps/evaluation/forms/quick.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django import forms
|
||||
|
||||
from core.apps.evaluation.models import QuickEvaluationModel
|
||||
|
||||
|
||||
class QuickevaluationForm(forms.ModelForm):
|
||||
|
||||
class Meta:
|
||||
model = QuickEvaluationModel
|
||||
fields = "__all__"
|
||||
Reference in New Issue
Block a user