Ticket #3060: auth-timestamp-patch.diff
File auth-timestamp-patch.diff, 1.4 KB (added by , 18 years ago) |
---|
-
django/contrib/auth/models.py
95 95 is_staff = models.BooleanField(_('staff status'), default=False, help_text=_("Designates whether the user can log into this admin site.")) 96 96 is_active = models.BooleanField(_('active'), default=True, help_text=_("Designates whether this user can log into the Django admin. Unselect this instead of deleting accounts.")) 97 97 is_superuser = models.BooleanField(_('superuser status'), default=False, help_text=_("Designates that this user has all permissions without explicitly assigning them.")) 98 last_login = models.DateTimeField(_('last login'), default=models.LazyDate() )99 date_joined = models.DateTimeField(_('date joined'), default=models.LazyDate() )98 last_login = models.DateTimeField(_('last login'), default=models.LazyDate(), auto_now_add=True) 99 date_joined = models.DateTimeField(_('date joined'), default=models.LazyDate(), auto_now_add=True) 100 100 groups = models.ManyToManyField(Group, verbose_name=_('groups'), blank=True, 101 101 help_text=_("In addition to the permissions manually assigned, this user will also get all permissions granted to each group he/she is in.")) 102 102 user_permissions = models.ManyToManyField(Permission, verbose_name=_('user permissions'), blank=True, filter_interface=models.HORIZONTAL)