I'm using YiiBoostrap in my Yii app and I have a TbListView output some images.
<?php
$this->widget('bootstrap.widgets.TbListView',array(
'dataProvider'=>$dataProviderModerator,
'id'=>'website-grid',
'itemView'=>'_viewWebsite',
'template'=>'{items}',
'itemsCssClass'=>'grid-group row m-t-25',
'cssFile'=>false,
'summaryText'=>false,
'pager'=>array(
'header'=>'',
'cssFile'=>false,
'maxButtonCount'=>10,
'selectedPageCssClass'=>'active',
'hiddenPageCssClass'=>'disabled',
'prevPageLabel'=>'‹',
'nextPageLabel'=>'›',
),
'htmlOptions'=>array('class'=>'')));
?>
Output

I would like to add a div manually to the end of above generated lists, which I'm expecting something like this

How can I do this?
It must be possible with jQuery:
You can put this inside some JavaScript function and call it when needed. E.g. at first time or
afterAjaxUpdatein yourTbListView. This is just an idea. See how create DOM element and CListView::afterAjaxUpdate().