class List(models.Model):
    profile = models.ForeignKey(Profile)

    def __unicode__(self):
        
        # Represent instance with 's on end unless person's name ends with s
        if unicode(self.profile)[-1] == 's':
            return "%s' bucketlist" % self.profile
        else:
            return "%s's bucketlist" % self.profile