The best set of templates for Gii, which one?

Hi guys!

I am looking for a set of templates for Gii, which is able to catch all relations into a single view and present it nicely on the screen. For example, let’s say we have three models:

  • Client

  • Order

  • Product

Then I go to the client’s list (genarated by gii tools), pick up one of them and on the detail page I would like to see others relations regarding to the Client.

Thanks in advance!

Regards,

Andrzej

You could solve this question creating linked pages.

Starting from clients grid, in every row put a column with a link to orders grid, passing client_id as parameter; When you are in orders grid, in every row put a column with a link to articles grid, passing order_id as parameter.

This doesn’t take much to be realized.