Yiistrap Item Template Problem




array(

                    'class' => 'bootstrap.widgets.TbNav',

                    'htmlOptions' => array('class' => 'pull-right'),

                    'items' => array(

                        array('label' => Yii::t('app', 'Sign Up'), 'url' => array('/user/registration'), 'visible' => Yii::app()->user->isGuest),

                        array('label' => Yii::t('app', 'Log In'), 'url' => '#', 'visible' => Yii::app()->user->isGuest,

                            'items' => array(

                                array(

                                    'url' => '#',

                                    'template' => $this->renderPartial('application.modules.user.components/views/_menuloginform', array('model' => new UserLogin), true),

                                ),

                            ),

                        ),

        ),

)



This array is items from TbNavbar widget.

With YiiBooster works great, but Yiistrap do not work.

Please, tell me where is the problem or another solutions for display form in dropdown.

Thanks!