Files
rogaining_srv/rog/choices.py

7 lines
163 B
Python
Raw Normal View History

2022-02-22 20:21:57 +05:30
from django.utils.translation import gettext_lazy as _
LAYER_CHOICES = (
(1, _("locations")),
2022-03-02 19:24:56 +05:30
(2, _("locations_line")),
(3, _("locations_polygon")),
2022-02-22 20:21:57 +05:30
)