Hi, Taking the example of the auth_* model (users, groups, memberships, permissions), is there built-in functionality to show this kind of inter-related data (including many-to-many) via SQLTABLE, or should I just do it from scratch with the helpers?.
Something like the following per each user to show in each row: - 1 user data - N groups (internally via memberships) for each user - N permissions for each group All in a nice formatted table, kind of like in tree format (e.g. without repeating the user data for every group the user belongs too). The auth_* model is just the example, I really need it for other similar cases. Thanks, Carlos

