~youloc/youloc/prototype

« back to all changes in this revision

Viewing changes to youlocapp/models.py

  • Committer: Nina Kuisma
  • Date: 2010-04-28 15:21:01 UTC
  • Revision ID: ninnnu@gmail.com-20100428152101-1ltj5sdao00894iz
User profile. Currently the options have no effect

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
from django.contrib.auth.models import User
3
3
 
4
4
class LatestLocation(models.Model):
 
5
    def __unicode__(self):
 
6
        return self.user.username+"'s location"
5
7
    user = models.ForeignKey(User)
6
8
    updatetime = models.DateTimeField()
7
9
    latitude = models.FloatField()