Hi, our customer wants to display the username as 'username: firstname lastname'
The easiest way would be to overwrite User.__unicode__. But where should you put code like this? Up to now I put it in our middleware. Any comments, or better solutions? # middleware.py import new from django.contrib.auth.models import User def user_unicode(self): return '%s: %s %s' % (self.username, self.first_name, self.last_name) User.__unicode__=new.instancemethod(user_unicode, None, User) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---