mirror of
https://github.com/django/django.git
synced 2024-11-19 16:04:13 +00:00
bf33d3eb1d
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12029 bcc190cf-cafb-0310-a4f2-bffc1f526a37
18 lines
501 B
Python
18 lines
501 B
Python
from django import template, forms
|
|
from django.forms.extras import SelectDateWidget
|
|
from models import Company
|
|
|
|
class I18nForm(forms.Form):
|
|
decimal_field = forms.DecimalField()
|
|
float_field = forms.FloatField()
|
|
date_field = forms.DateField()
|
|
datetime_field = forms.DateTimeField()
|
|
time_field = forms.TimeField()
|
|
|
|
class SelectDateForm(forms.Form):
|
|
date_field = forms.DateField(widget=SelectDateWidget)
|
|
|
|
class CompanyForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Company
|