I use a proxy model on User
like
class Nuser(User):
class Meta:
proxy = True
def __unicode__(self):
return u'%s %s' % (self.first_name, self.last_name)
I use it throughout my views.
I was wondering the best way to get the instance of this object for the request.user
Each time I do
Nuser.objects.get(pk=request.user.pk)
Isn't there a simpler way to do it ?