Can someone give a clear example of creating a table object using django-tables2, which selects and represents data from several related models (i.e. a relational join)? The documentation implies that this is possible, but does not say how to do it.
In regular django, the select_related () function works well, but I cannot decide how to implement this in django-tables2. I note that there are other unanswered questions on similar topics.
chill source share