ValuationDocumentModel

— bu arizaga biriktiriladigan hujjatlar va rasmlar uchun kerak
This commit is contained in:
Husanjonazamov
2026-02-18 17:56:51 +05:00
parent 88bcbc07bd
commit 4680581e8d
27 changed files with 345 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from django.db import models
from django.utils.translation import gettext_lazy as _
class DocumentType(models.TextChoices):
CERTIFICATE = "certificate", _("Certificate")
PASSPORT = "passport", _("Passport")
TECH_PASSPORT = "tech_passport", _("Tech Passport")
CADASTRAL = "cadastral", _("Cadastral Document")
PHOTO = "photo", _("Photo")
CONTRACT = "contract", _("Contract")
POWER_OF_ATTORNEY = "power_of_attorney", _("Power of Attorney")
OTHER = "other", _("Other")