jieter / django-tables2

django-tables2 - An app for creating HTML tables
https://django-tables2.readthedocs.io/en/latest/
Other
1.87k stars 426 forks source link

Separate table class definition and instantiation in `MultiTableMixin` #876

Closed gb119 closed 1 year ago

gb119 commented 1 year ago

This adds a get_tables_classes() method to MultiTableMixin that is called from get_tables() in place of always referring to the tables attribute - this makes it easier to define multiple dynamics custom table table classes in the view - like one can for SingleTableMixin.

Also added a test to test the new method.

fixes: #875