-
-
Notifications
You must be signed in to change notification settings - Fork 1
Description
For example:
from django.db import models
from django.utils.translation import gettext_lazy as _
class YearInSchool(models.TextChoices):
FRESHMAN = "FR", _("Freshman")
SOPHOMORE = "SO", _("Sophomore")
JUNIOR = "JR", _("Junior")
SENIOR = "SR", _("Senior")
GRADUATE = "GR", _("Graduate")the label values could be extracted and used as x-enumdescriptions.
Copilot
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request