~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to tests/regressiontests/i18n/forms.py

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-24 22:44:32 UTC
  • mfrom: (1.1.11 upstream) (4.4.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100524224432-lz0tq65rhy8cov3y
Tags: 1.2.1-1
New upstream bugfix release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
class CompanyForm(forms.ModelForm):
17
17
    cents_payed = forms.DecimalField(max_digits=4, decimal_places=2, localize=True)
18
18
    products_delivered = forms.IntegerField(localize=True)
 
19
    date_added = forms.DateTimeField(localize=True)
19
20
 
20
21
    class Meta:
21
22
        model = Company