TableAutoConfig =============== Base class: `AutoConfig` Refinable members ----------------- `default_included` ^^^^^^^^^^^^^^^^^^ Type: `bool` Cookbook: :ref:`show-columns` `exclude` ^^^^^^^^^ A list of attribute names to exclude, use `__` to drill down to nested attributes. Example: `['album', 'album__year']` Type: `list[str] | None` Cookbook: :ref:`show-columns` `include` ^^^^^^^^^ A list of attribute names to include, use `__` to drill down to nested attributes. Example: `['album', 'album__year']`. A list item may also be a dict carrying the attribute path under its `attr` key, with the remaining keys passed as additional configuration to that entry. Example: `['album', dict(attr='album__year', display_name='Year')]` Type: `list[str | dict] | None` See :ref:`include ` Cookbook: :ref:`nested-fk` :ref:`show-columns` `model`     (:ref:`evaluated `) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ A Django model class Type: `type[Model] | None` Cookbook: :ref:`cell-link` :ref:`filter-column` :ref:`group-columns` :ref:`freetext-column` :ref:`show-columns` :ref:`column-computed-data` :ref:`turn-off-pagination` :ref:`reorder-columns` `rows` ^^^^^^ A `QuerySet` object. If this field is specified, the `model` attribute will be automatically derived. This cannot be a callable, in that case set `model` and use `rows=lambda...` instead of `auto__rows`. Cookbook: :ref:`group-rows`