Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm pretty new to django. I try to use the auth.User object as a foreign key.

My model:

from django.contrib.auth.models import User

(...)

class Entry(models.Model):
    (...)
    user = models.ForeignKey(User)
    date = models.DateTimeField()
    def __unicode__(self):
        return self.user

When creating a new Entry with a user in admin interface, i get: "coercing to Unicode: need string or buffer, User found"

Exception Type: TypeError

Exception Value: coercing to Unicode: need string or buffer, User found

Exception Location: /Library/Python/2.7/site-packages/django/utils/encoding.py in force_unicode, line 71

What am i missing?

share|improve this question

1 Answer

up vote 7 down vote accepted

this should work and explain itself

def __unicode__(self):
    return unicode(self.user)
share|improve this answer
it does! so simple... thanks! – Dabido Sep 13 '11 at 9:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.