8 lines
232 B
Python
8 lines
232 B
Python
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
|