This commit is contained in:
2022-02-22 20:21:57 +05:30
parent ce6ebebdce
commit 566789f382
11 changed files with 500 additions and 9 deletions

5
rog/choices.py Normal file
View File

@ -0,0 +1,5 @@
from django.utils.translation import gettext_lazy as _
LAYER_CHOICES = (
(1, _("locations")),
)