add contract models and register this models admin panel

This commit is contained in:
behruz-dev
2025-07-15 16:01:34 +05:00
parent 92838f1dde
commit 66d4713a61
16 changed files with 370 additions and 1 deletions

View File

@@ -1 +1,2 @@
from .base import *
from .base import *
from .folder import *

View File

@@ -0,0 +1,15 @@
from django.db import models
from core.apps.shared.models.base import BaseModel
class Folder(BaseModel):
name = models.CharField(max_length=200)
def __str__(self):
return self.name
class Meta:
verbose_name = 'folder'
verbose_name_plural = 'folders'
db_table = 'folders'