In your doc examples
Table(auto__model=Album) loads all rows.
instead of Album.objects.all() I would like to populate the table with a filter always.
For example Albums.objects.filter(draft=False)
Does the rows parameter do this?
Is there an example in the docs?
In your doc examples Table(auto__model=Album) loads all rows. instead of Album.objects.all() I would like to populate the table with a filter always. For example Albums.objects.filter(draft=False) Does the rows parameter do this? Is there an example in the docs?
Thank you.