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 En
this should work and explain itself
def __unicode__(self): return unicode(self.user)