Changeset aa6a940 for asadb/groups/views.py
- Timestamp:
- Aug 13, 2011, 9:53:10 PM (14 years ago)
- Branches:
- master, space-access, stable, stage, test-hooks
- Children:
- 0bd161f
- Parents:
- 9bf5237
- git-author:
- Alex Dehnert <adehnert@…> (08/13/11 21:53:10)
- git-committer:
- Alex Dehnert <adehnert@…> (08/13/11 21:53:10)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
asadb/groups/views.py
r70f2dd3 raa6a940 78 78 ] 79 79 nobody_fields = [ 80 'recognition_date', 'updater', 'update_date',80 'recognition_date', 81 81 ] 82 82 … … 105 105 ('more-info', { 106 106 'legend': 'Additional Information', 107 'fields': ['constitution_url', 'advisor_name', 'athena_locker', 'updater', 'update_date',],107 'fields': ['constitution_url', 'advisor_name', 'athena_locker', ], 108 108 }), 109 109 ] … … 131 131 132 132 if form.is_valid(): # All validation rules pass 133 request_obj = form.save() 133 request_obj = form.save(commit=False) 134 request_obj.set_updater(request.user) 135 request_obj.save() 136 form.save_m2m() 134 137 135 138 # Send email
Note: See TracChangeset
for help on using the changeset viewer.