Ticket #3060: auth-timestamp-patch.diff

File auth-timestamp-patch.diff, 1.4 KB (added by Ronny Pfannschmidt <ronny.pfannschmidt@…>, 17 years ago)
  • django/contrib/auth/models.py

     
    9595    is_staff = models.BooleanField(_('staff status'), default=False, help_text=_("Designates whether the user can log into this admin site."))
    9696    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."))
    9797    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)
    100100    groups = models.ManyToManyField(Group, verbose_name=_('groups'), blank=True,
    101101        help_text=_("In addition to the permissions manually assigned, this user will also get all permissions granted to each group he/she is in."))
    102102    user_permissions = models.ManyToManyField(Permission, verbose_name=_('user permissions'), blank=True, filter_interface=models.HORIZONTAL)
Back to Top