This commit is contained in:
behruz-dev
2025-11-27 18:45:43 +05:00
parent bf2a3c0842
commit e2386dcb11
3 changed files with 20 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ class TourPlan(BaseModel):
latitude = models.FloatField(null=True, blank=True)
longitude = models.FloatField(null=True, blank=True)
location_send = models.BooleanField(default=False)
date = models.DateField(null=True, blank=True)
def __str__(self):
return f"{self.user.first_name}'s tour plan to {self.place_name}"