mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	For more information on this project, see this thread: http://groups.google.com/group/django-developers/browse_thread/thread/cf0423bbb85b1bbf git-svn-id: http://code.djangoproject.com/svn/django/trunk@17106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			14 lines
		
	
	
		
			262 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 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
 |