Files
rogaining_srv/rog/choices.py

7 lines
166 B
Python
Raw Normal View History

2022-03-14 10:50:11 +05:30
from django.utils.translation import gettext_lazy as _
LAYER_CHOICES = (
2022-04-07 14:53:11 +05:30
(1, _("location")),
2022-03-14 10:50:11 +05:30
(2, _("Location_line")),
(3, _("Location_polygon")),
2022-02-22 20:21:57 +05:30
)