Changeset aaac98d for telemeta/models/system.py
- Timestamp:
- 03/29/11 15:12:57 (2 years ago)
- Branches:
- master, crem, crem2, dev, dev2, diadems, forma, generic, instru_search, lam, nlivemulti, production, release/1.4.4, security, social, storage, test, video
- Children:
- 45dc70c
- Parents:
- 16c505f
- git-author:
- yomguy <yomguy@…> (03/29/11 15:12:57)
- git-committer:
- yomguy <yomguy@…> (03/29/11 15:12:57)
- File:
-
- 1 edited
-
telemeta/models/system.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
telemeta/models/system.py
ra0a6e24 raaac98d 36 36 from django.contrib.auth.models import User 37 37 from telemeta.models.core import * 38 import django.db.models39 38 from django.core.exceptions import ObjectDoesNotExist 40 39 from django.utils.translation import ugettext_lazy as _ 40 import django.db.models 41 41 42 42 … … 75 75 "User profile extension" 76 76 77 user = django.db.models.ForeignKey(User, unique=True)77 user = ForeignKey(User, unique=True) 78 78 institution = CharField(_('institution')) 79 79 function = CharField(_('function')) … … 82 82 expiration_date = DateField(_('expiration_date')) 83 83 84 class Meta(MetaCore): 85 db_table = 'profiles' 86
Note: See TracChangeset
for help on using the changeset viewer.
