From 8df6276caffce9e7b30867992a6918b591c25477 Mon Sep 17 00:00:00 2001 From: Skrattoune <56255427+Skrattoune@users.noreply.github.com> Date: Sun, 23 Jan 2022 09:57:43 +0100 Subject: [PATCH] Inversion Latitude Longitude in model #144 --- openrepairplatform/location/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrepairplatform/location/models.py b/openrepairplatform/location/models.py index c0ed38ca..6267d68c 100644 --- a/openrepairplatform/location/models.py +++ b/openrepairplatform/location/models.py @@ -23,8 +23,8 @@ class Place(models.Model): category = models.CharField(max_length=100, default="Other") slug = models.SlugField(default="", blank=True) address = models.CharField(max_length=255, verbose_name=_("street address")) - longitude = models.FloatField() latitude = models.FloatField() + longitude = models.FloatField() picture = models.ImageField( upload_to="places/", blank=True,