Initial commit

This commit is contained in:
Abdulaziz Axmadaliyev
2026-02-17 19:05:54 +05:00
parent 493cb58222
commit 3691e2d068
56 changed files with 3546 additions and 893 deletions

View File

@@ -0,0 +1,10 @@
from django.db import models
class Employee(models.Model):
user = models.ForeignKey("accounts.User", on_delete=models.PROTECT)
device = models.ManyToManyField("management.Device")
def __str__(self):
return self.user.first_name