9 lines
168 B
Python
9 lines
168 B
Python
|
from django import forms
|
||
|
|
||
|
from .models import Event
|
||
|
|
||
|
class EventForm(forms.ModelForm):
|
||
|
class Meta:
|
||
|
model = Event
|
||
|
fields = ['date', 'user', 'notes']
|