fix - update page access - v3

This commit is contained in:
2025-12-01 10:25:27 +03:30
parent f1cc524863
commit f66067778c
5 changed files with 144 additions and 37 deletions

View File

@@ -9,7 +9,7 @@ from apps.core.models import BaseModel
class Page(BaseModel):
""" every front-end page on system """
code = models.CharField(max_length=100, unique=True)
code = models.CharField(max_length=100)
name = models.CharField(max_length=255)
is_active = models.BooleanField(default=True)