post message in chatter

This commit is contained in:
Tobias Brunner 2025-01-28 10:54:35 +01:00
parent 70f4a02db9
commit 7b21d9d612
No known key found for this signature in database
3 changed files with 68 additions and 0 deletions

View file

@ -195,6 +195,7 @@ class Service(models.Model):
class Lead(models.Model):
service = models.ForeignKey(Service, on_delete=models.CASCADE)
plan = models.ForeignKey(Plan, on_delete=models.SET_NULL, null=True, blank=True)
name = models.CharField(max_length=200)
company = models.CharField(max_length=200)
email = models.EmailField()