ValuationDocumentModel
— bu arizaga biriktiriladigan hujjatlar va rasmlar uchun kerak
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
from .auto import * # noqa
|
||||
from .customer import * # noqa
|
||||
from .document import * # noqa
|
||||
from .movable import * # noqa
|
||||
from .quick import * # noqa
|
||||
from .real_estate import * # noqa
|
||||
|
||||
10
core/apps/evaluation/forms/document.py
Normal file
10
core/apps/evaluation/forms/document.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from django import forms
|
||||
|
||||
from core.apps.evaluation.models import ValuationDocumentModel
|
||||
|
||||
|
||||
class ValuationdocumentForm(forms.ModelForm):
|
||||
|
||||
class Meta:
|
||||
model = ValuationDocumentModel
|
||||
fields = "__all__"
|
||||
Reference in New Issue
Block a user