- Timestamp:
- Mar 28, 2010, 2:23:01 PM (15 years ago)
- Branches:
- master, client
- Children:
- ef500c1
- Parents:
- a75ed9b
- git-author:
- Alex Dehnert <adehnert@…> (03/28/10 14:23:01)
- git-committer:
- Alex Dehnert <adehnert@…> (03/28/10 14:23:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
remit/vouchers/models.py
ra75ed9b r72a92e0 89 89 last_name = models.CharField(max_length=20) 90 90 email_address = models.EmailField(max_length=50) 91 mailing_address = models.TextField( )91 mailing_address = models.TextField(blank=True, ) 92 92 amount = models.DecimalField(max_digits=7, decimal_places=2,) 93 93 description = models.TextField() 94 94 gl = models.IntegerField() 95 95 processed = models.BooleanField() 96 documentation = models.ForeignKey('Documentation', null=True, )96 documentation = models.ForeignKey('Documentation', blank=True, null=True, ) 97 97 98 98 def mailing_addr_lines(self):
Note: See TracChangeset
for help on using the changeset viewer.