Do not paginate tables in homepage
Currently the homepage is table heavy and uses pagination, which means at least two queries per table: one to count and one to extract data.
Since the goal is to show summaries, we can extend the tables sytem to disable pagination, and instead show a link to a more complete view if there are more items than would fit in the intended space. Filtering could also be disabled, and possibly sorting, since one can follow the link to the full view for that.
This would both reduce the number of queries per table in homepage, and reduce visual clutter.