Changeset 965
- Timestamp:
- 10/19/05 18:59:05 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/i18n/django/contrib/admin/models/admin.py
r963 r965 6 6 action_time = meta.DateTimeField(_('action time'), auto_now=True) 7 7 user = meta.ForeignKey(auth.User) 8 content_type = meta.ForeignKey( _('content type'),core.ContentType, blank=True, null=True)8 content_type = meta.ForeignKey(core.ContentType, blank=True, null=True) 9 9 object_id = meta.TextField(_('object id'), blank=True, null=True) 10 10 object_repr = meta.CharField(_('object repr'), maxlength=200)
