Files
rogaining_srv/rog/choices.py
2022-03-07 16:51:01 +05:30

7 lines
161 B
Python

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