I have the following model;
class Station(models.Model): name = models.CharField(max_length=50) address = models.TextField(default=\'\') owner = mode
station.members is a Manager, i.e. it is the accessor for queries on the related users. You need to actually perform a query: in this case, station.members.all().
station.members
station.members.all()