ValuationDocumentModel
— bu arizaga biriktiriladigan hujjatlar va rasmlar uchun kerak
This commit is contained in:
13
core/apps/evaluation/choices/document.py
Normal file
13
core/apps/evaluation/choices/document.py
Normal 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")
|
||||
Reference in New Issue
Block a user