Ignore:
Timestamp:
Jan 6, 2010, 2:13:19 AM (16 years ago)
Author:
Alex Dehnert <adehnert@…>
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)
Message:

Improve ReimbursementRequest? admin area

File:
1 edited

Legend:

Unmodified
Added
Removed
  • treasury/vouchers/models.py

    r13a23ce ra96d938  
    7171class ReimbursementRequest(models.Model):
    7272    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)")
    7676    amount = models.DecimalField(max_digits=7, decimal_places=2)
    7777    budget_area = models.ForeignKey(BudgetArea)
Note: See TracChangeset for help on using the changeset viewer.