TableAutoConfig

Base class: AutoConfig

Refinable members

default_included

Cookbook:

How do I specify which columns to show?

exclude

A list of attribute names to exclude, use __ to drill down to nested attributes. Example: ['album', 'album__year']

Cookbook:

How do I specify which columns to show?

include

A list of attribute names to include, use __ to drill down to nested attributes. Example: ['album', 'album__year']

See include

Cookbook:

How do I show nested foreign key relationships?

How do I specify which columns to show?

model     (evaluated)

A Django model class

Type: Type[django.db.models.base.Model]

Cookbook:

How do I enable searching/filter on columns?

How do I create a column based on computed data (i.e. a column not based on an attribute of the row)?

How do I make a freetext search field?

How do I group columns?

How do I reorder columns?

How do I make a link in a cell?

How do I specify which columns to show?

How do you turn off pagination?

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:

How do I group rows?