Changeset a96d938 for treasury/vouchers/models.py
- Timestamp:
- Jan 6, 2010, 2:13:19 AM (16 years ago)
- Branches:
- master, client
- Children:
- f186a0e
- Parents:
- 3306b90
- git-author:
- Alex Dehnert <adehnert@…> (01/06/10 02:13:19)
- git-committer:
- Alex Dehnert <adehnert@…> (01/06/10 02:13:19)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
treasury/vouchers/models.py
r13a23ce ra96d938 71 71 class ReimbursementRequest(models.Model): 72 72 submitter = models.CharField(max_length=10) # MIT username of submitter 73 check_to_name = models.CharField(max_length=50 )74 check_to_email = models.EmailField( )75 check_to_addr = models.TextField(blank=True )73 check_to_name = models.CharField(max_length=50, verbose_name="check recipient's name") 74 check_to_email = models.EmailField(verbose_name="email address for check pickup") 75 check_to_addr = models.TextField(blank=True, verbose_name="address for check mailing", help_text="For most requests, this should be blank for pickup in SAO (W20-549)") 76 76 amount = models.DecimalField(max_digits=7, decimal_places=2) 77 77 budget_area = models.ForeignKey(BudgetArea)
Note: See TracChangeset
for help on using the changeset viewer.