I inserted "creator"-method to my model like this:
def creator(self):
return self.user
Then i'd add this line to Admin-class of this model^
list_display = ('title','created_at','votes','creator')
And there was all good... usernames are displayed on that column, but i want to make links from that names which will forward me to edit that user-profiles. How can i do this? Thanks a lot!