first commit
This commit is contained in:
7
sheets/forms.py
Normal file
7
sheets/forms.py
Normal 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
|
||||
Reference in New Issue
Block a user