mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
728b6fd9ca
and deprecated django.forms.extras. Thanks Berker Peksag and Tim Graham for the reviews.
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__'
|