Admin Page with Paginations based on monts-year

Is there a way to develop something like that? Or use a calendar in the admin page to do something like that?

I need some admin filters like django does :)

up?

up

Pagination is automatic.

To filter your data, see http://www.yiiframework.com/doc/cookbook/11/

Basically you have to configure $criteria at actionAdmin like this:

$criteria->condition = ‘my_year = :year’;

$criteria->params = array(‘year’ => $_GET[‘year’]);

An idea how to customize labels:

http://www.yiiframework.com/forum/index.php?/topic/2169-how-to-change-clinkpager-atexta/page__hl__pagination%20label__fromsearch__1

/Tommy