Get SignupForm email content from frontend

This commit is contained in:
Aarni Halinen
2020-10-06 18:33:41 +03:00
parent d45f7195f5
commit 43fe25ba64
4 changed files with 22 additions and 9 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ class SignupForm(models.Model):
schema = JSONField()
visible = models.BooleanField(default=True)
quota = models.PositiveIntegerField(blank=True, null=True)
email_content = models.TextField()
email_content = models.TextField(blank=True)
def __str__(self):
return _('#{} {}').format(self.id, self.title)