This commit is contained in:
parent 6a6ae29900
commit 5399215353
1 changed files with 3 additions and 3 deletions

View File

@ -29,9 +29,9 @@ class Element3D(models.Model):
class ClickableArea(models.Model):
name = models.CharField(max_length=255)
description = models.TextField()
object_name = models.CharField(max_length=255)
name = models.CharField("название", max_length=255)
description = models.TextField("описание")
object_name = models.CharField("название объекта", max_length=255)
target = models.ForeignKey(
Element3D,
on_delete=models.PROTECT,