Changeset 00017c8
- Timestamp:
- Jan 27, 2013, 5:47:43 PM (13 years ago)
- Branches:
- master, space-access, stable, stage
- Children:
- 67dd640
- Parents:
- dcb389e
- git-author:
- Alex Dehnert <adehnert@…> (01/27/13 17:46:57)
- git-committer:
- Alex Dehnert <adehnert@…> (01/27/13 17:47:43)
- Location:
- asadb/space
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
asadb/space/migrations/0006_lock_types_setup.py
rdcb389e r00017c8 6 6 7 7 lock_types = ( 8 ('Inner', 'inner', ), 8 ('Inner', 'inner', 'Offices accessed through another office owned by the same group, which therefore does not having a separate lock.', 'asa-exec@mit.edu', None, ), 9 ('CAC Card Access', 'cac-card', 'Offices with the standard CAC-maintained card access system', ), 9 10 ) 10 11 -
asadb/space/models.py
r1eee8d1 r00017c8 22 22 slug = models.SlugField(unique=True, ) 23 23 description = models.TextField() 24 info_addr = models.EmailField(default='asa-exec@mit.edu' )24 info_addr = models.EmailField(default='asa-exec@mit.edu', help_text='Address groups should email to get more information about managing access through this lock type.') 25 25 db_update = models.CharField(null=True, max_length=20, default=None, choices=lock_db_update_choices) 26 26
Note: See TracChangeset
for help on using the changeset viewer.