mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-06 18:36:48 +00:00
8 lines
171 B
Python
8 lines
171 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class PlaceNames(models.TextChoices):
|
|
|
|
T2 = "T2", _("T2")
|
|
T3 = "T3", _("T3")
|