Changeset 72a92e0 for remit


Ignore:
Timestamp:
Mar 28, 2010, 2:23:01 PM (15 years ago)
Author:
Alex Dehnert <adehnert@…>
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)
Message:

Mailing address and documentation can be blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • remit/vouchers/models.py

    ra75ed9b r72a92e0  
    8989    last_name = models.CharField(max_length=20)
    9090    email_address = models.EmailField(max_length=50)
    91     mailing_address = models.TextField()
     91    mailing_address = models.TextField(blank=True, )
    9292    amount = models.DecimalField(max_digits=7, decimal_places=2,)
    9393    description = models.TextField()
    9494    gl = models.IntegerField()
    9595    processed = models.BooleanField()
    96     documentation = models.ForeignKey('Documentation', null=True, )
     96    documentation = models.ForeignKey('Documentation', blank=True, null=True, )
    9797
    9898    def mailing_addr_lines(self):
Note: See TracChangeset for help on using the changeset viewer.