With django-tables2 how do I display a model @property?
问题 I have a @property in my model which is basically a string of several values in the model combined. @property def mfg_link(self): return ''.join('http://mfg.com/model/' + str(self.model_numer)) I can add this mfg_link to the list_display on the admin model and it works fine, but its not showing up in the generated table when I pass the queryset to the table, the other fields show up fine. This seems like something obvious, but unfortunately the couple of hours of searching didn't help. Thanks