Files
rogaining_srv/rog/choices.py
2025-08-20 19:15:19 +09:00

7 lines
170 B
Python
Executable File

from django.utils.translation import gettext_lazy as _
LAYER_CHOICES = (
(1, _("templocation")),
(2, _("Location_line")),
(3, _("Location_polygon")),
)