from django.db import models from django.utils.translation import gettext_lazy as _ class PlacesNames(models.TextChoices): T2 = "T2", _("T2") T3 = "T3", _("T3")