Mercurial > public > sg101
view gpp/core/models.py @ 231:a2d388ed106e
Guard against the request object not having a user attribute in my Who's online middleware. This can happen if a redirect is issued before the authentication middleware gets to run.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 14 Jul 2010 02:35:39 +0000 |
parents | 423c39ee44e0 |
children | dcc929973bba |
line wrap: on
line source
""" This file contains the core Models used in gpp """ from django.db import models from django.contrib import auth class UserLastVisit(models.Model): """ This model represents timestamps indicating a user's last visit to the site. """ user = models.ForeignKey(auth.models.User, unique=True) last_visit = models.DateTimeField(db_index=True) class AnonLastVisit(models.Model): """ This model represents timestamps for the last visit from non-authenticated users. """ ip = models.CharField(max_length=16, db_index=True, unique=True) last_visit = models.DateTimeField(db_index=True)