mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			794 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			794 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django import forms
 | |
| 
 | |
| from .models import Company
 | |
| 
 | |
| 
 | |
| class I18nForm(forms.Form):
 | |
|     decimal_field = forms.DecimalField(localize=True)
 | |
|     float_field = forms.FloatField(localize=True)
 | |
|     date_field = forms.DateField(localize=True)
 | |
|     datetime_field = forms.DateTimeField(localize=True)
 | |
|     time_field = forms.TimeField(localize=True)
 | |
|     integer_field = forms.IntegerField(localize=True)
 | |
| 
 | |
| 
 | |
| class SelectDateForm(forms.Form):
 | |
|     date_field = forms.DateField(widget=forms.SelectDateWidget)
 | |
| 
 | |
| 
 | |
| class CompanyForm(forms.ModelForm):
 | |
|     cents_paid = forms.DecimalField(max_digits=4, decimal_places=2, localize=True)
 | |
|     products_delivered = forms.IntegerField(localize=True)
 | |
|     date_added = forms.DateTimeField(localize=True)
 | |
| 
 | |
|     class Meta:
 | |
|         model = Company
 | |
|         fields = '__all__'
 |