I have this models:
class Project(models.Model):
name = models.CharField()
class Task(models.Model):
title = models.CharField()
project = models.ForeignKey('Project')
class Activity(models.Model):
title = models.CharField()
task = models.ForeignKey('Task')
in the changelist from Activity I want to show a column with the Project.name. Is it possible to show the content and make this column sortable?