14 lines
499 B
Python
14 lines
499 B
Python
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")
|