8 lines
220 B
Python
8 lines
220 B
Python
from django import forms
|
|
from .models import Event
|
|
|
|
class EventForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Event
|
|
fields = ['title', 'description', 'start_time', 'end_time', 'location_address', 'team']
|