This commit is contained in:
2025-04-15 10:02:26 +02:00
parent 1f4ad77acc
commit 4e377f5a72
12 changed files with 716 additions and 82 deletions

View File

@@ -1,5 +1,12 @@
from django.db import models
class Client(models.Model):
name = models.CharField(max_length=100)
address = models.TextField()
def __str__(self):
return self.name
class ExcelEntry(models.Model):
name = models.CharField(max_length=100)
age = models.IntegerField()