mirror of
https://github.com/django/django.git
synced 2025-11-21 11:59:31 +00:00
For more information on this project, see this thread:
cf0423bbb8
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
13 lines
262 B
Python
13 lines
262 B
Python
from django import forms
|
|
|
|
from .models import Event
|
|
|
|
class EventForm(forms.Form):
|
|
dt = forms.DateTimeField()
|
|
|
|
class EventSplitForm(forms.Form):
|
|
dt = forms.SplitDateTimeField()
|
|
|
|
class EventModelForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Event
|