Changeset d7dcfee for asadb/groups
- Timestamp:
- Dec 25, 2011, 3:48:39 AM (14 years ago)
- Branches:
- master, space-access, stable, stage
- Children:
- d9137a7
- Parents:
- c8cb9ba
- git-author:
- Alex Dehnert <adehnert@…> (12/25/11 03:48:39)
- git-committer:
- Alex Dehnert <adehnert@…> (12/25/11 03:48:39)
- Location:
- asadb/groups
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
asadb/groups/models.py
rfd6ed57 rd7dcfee 35 35 funding_account_id = models.IntegerField(null=True, blank=True, ) 36 36 athena_locker = models.CharField(max_length=20, blank=True) 37 recognition_date = models.Date Field()37 recognition_date = models.DateTimeField() 38 38 update_date = models.DateTimeField(editable=False, ) 39 39 updater = models.CharField(max_length=30, editable=False, null=True, ) # match Django username field -
asadb/groups/views.py
rfd6ed57 rd7dcfee 483 483 group.group_status = groups.models.GroupStatus.objects.get(slug='active') 484 484 group.constitution_url = "" 485 group.recognition_date = datetime.date .today()485 group.recognition_date = datetime.datetime.now() 486 486 group.set_updater(request.user) 487 487
Note: See TracChangeset
for help on using the changeset viewer.