introduce message field in lead form
This commit is contained in:
parent
5eb40ffc4f
commit
ddec9d1126
7 changed files with 46 additions and 5 deletions
|
@ -273,6 +273,7 @@ class Lead(models.Model):
|
|||
company = models.CharField(max_length=200)
|
||||
email = models.EmailField()
|
||||
phone = models.CharField(max_length=50)
|
||||
message = models.TextField(blank=True, max_length=1000)
|
||||
created_at = models.DateTimeField(auto_now_add=True)
|
||||
odoo_lead_id = models.IntegerField(null=True, blank=True)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue