first commit

This commit is contained in:
2025-02-26 13:24:53 +01:00
commit 3b618dd791
21 changed files with 871 additions and 0 deletions

7
sheets/forms.py Normal file
View File

@@ -0,0 +1,7 @@
from django import forms
from .models import ExcelEntry
class ExcelEntryForm(forms.ModelForm):
class Meta:
model = ExcelEntry
fields = ['name', 'age', 'email'] # Include only the fields you want users to input