First version

This commit is contained in:
Senad Uka
2023-07-05 11:02:15 +02:00
parent f21c24b599
commit 8eabf79994
4052 changed files with 723968 additions and 232443 deletions

View File

@@ -19,9 +19,9 @@ class Request(models.Model):
price_from = models.IntegerField(validators=[MinValueValidator(0)])
price_to = models.IntegerField(validators=[MinValueValidator(0)])
needed_information = models.JSONField()
start_in_days = models.IntegerField()
email = models.EmailField()
email_confirmation = models.EmailField()
external_id = models.UUIDField(default=uuid.uuid4, editable=False, unique=True)
comment = models.TextField(null=True, blank=True)
def __str__(self):
return self.email + ' ' + self.title + " " + self.description[:20] + "..."