Добавлен базовый фронтенд

This commit is contained in:
2022-09-10 07:29:29 +03:00
parent 0b1c16b24f
commit c58061a63b
23 changed files with 20276 additions and 25 deletions

View File

@@ -4,12 +4,11 @@ from django.db import models
class Facility(models.Model):
name = models.CharField(max_length=200)
address = models.CharField(max_length=100)
city = models.CharField(max_length=50)
name = models.CharField(max_length=200, verbose_name=_("name"))
address = models.CharField(max_length=100, verbose_name=_("address"))
city = models.CharField(max_length=50, verbose_name=_("city"))
location = gis_models.PointField(
null=True,
blank=True,
null=True, blank=True, verbose_name=_("location")
)
class Meta: