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
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:
/Tommy