This commit is contained in:
parent 86dd4f5cdd
commit 2134bc6688
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,8 @@ class Element3D(models.Model):
model_file = models.FileField(upload_to=group_based_upload_to)
name = models.CharField(max_length=255)
description = models.TextField()
bool = models.BooleanField( blank=True, null=True)
def __str__(self):
return self.name