Changeset e8e7a0e


Ignore:
Timestamp:
May 13, 2010, 9:22:01 PM (16 years ago)
Author:
Geoffrey Thomas <geofft@…>
Branches:
master, fysm-4-1, iframe, space-access, stable, stage, test-hooks
Children:
e6c8370
Parents:
1b7966c
git-author:
Geoffrey Thomas <geofft@…> (05/13/10 21:22:01)
git-committer:
Geoffrey Thomas <geofft@…> (05/13/10 21:22:01)
Message:

groups.Group: Be more lenient about locker and constitution fields

Some groups don't have Athena lockers. Many groups have AFS paths
currently in the database for their constitutions, and some even have
none (!) -- even if this is wrong, it shouldn't break the admin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/groups/models.py

    r4210a1b re8e7a0e  
    88    activity_category = models.ForeignKey('ActivityCategory', null=True, blank=True, )
    99    website_url = models.URLField()
    10     constitution_url = models.URLField()
     10    constitution_url = models.TextField(blank=True)
    1111    meeting_times = models.TextField(blank=True)
    1212    advisor_name = models.CharField(max_length=100, blank=True)
     
    1919    main_account_id = models.IntegerField(null=True, blank=True, )
    2020    funding_account_id = models.IntegerField(null=True, blank=True, )
    21     athena_locker = models.CharField(max_length=20)
     21    athena_locker = models.CharField(max_length=20, blank=True)
    2222    recognition_date = models.DateField()
    2323    update_date = models.DateTimeField()
Note: See TracChangeset for help on using the changeset viewer.