settings split for development and production.py

This commit is contained in:
2025-08-04 19:26:38 +03:00
parent f501be9794
commit 8294db9189
35 changed files with 711 additions and 66 deletions
+4 -1
View File
@@ -41,4 +41,7 @@ class Booking(models.Model):
@property
def containers_left(self):
return self.container_count - (self.container_expedited_count or 0)
return self.container_count - (self.container_expedited_count or 0)
class Meta:
app_label = 'booking'