I am trying to create an application where each element must be associated with some kind of user. Easy to put them together
user = models.ForeignKey(User)
Unfortunately, in this case, in django admin, I get a selection box with all the users listed by their usernames. Also, I need their first_name and last_name. I just can't figure out if there is a way to show all the names together in this select list in the django admin interface.
source share