Use view for another model with CListView widget

In my SiteController I would to show news and events, which are each a Models with their own views. In protected/views/site/index.php I am trying to use the CListView widget along with the _view.php located in the model folders. I get the exception "SiteController cannot find the requested view "\news\_view"." when I try the below. Please advise.

contents of protected/views/site/index.php:


<h4>News</h4>


<?php $this->widget('zii.widgets.CListView', array(

	'dataProvider'=>$newsDataProvider,

	'itemView'=>'\news\_view',

)); ?>


<h4>Events</h4>


<?php $this->widget('zii.widgets.CListView', array(

	'dataProvider'=>$eventsDataProvider,

	'itemView'=>'\events\_view',

)); ?>

Try using forward slashes or path aliases.