Exemple #1
0
<div style="width:121.5%;  ">
<div style="float:left; width:60%; margin-left:2%; ">
<?php 
if (empty($model)) {
    $this->redirect(array('index'));
}
$box = $this->beginWidget('bootstrap.widgets.TbBox', array('title' => 'Topic', 'headerIcon' => 'icon-th-list', 'htmlOptions' => array('class' => 'bootstrap-widget-table', 'style' => 'color:black; width:98%; margin-right:2%')));
$this->widget('bootstrap.widgets.TbDetailView', array('data' => $model, 'attributes' => array('topic', 'detail', 'name', 'email')));
$this->endWidget();
$answer = ForumAnswer::model()->findAll(array('condition' => 'a_id = :id', 'params' => array(':id' => $model->id), 'order' => 'a_datetime desc'));
foreach ($answer as $value) {
    $box = $this->beginWidget('bootstrap.widgets.TbBox', array('title' => 'Reply/Comment', 'headerIcon' => 'icon-th-list', 'htmlOptions' => array('class' => 'bootstrap-widget-table', 'style' => 'color:black; width:98%; margin-right:2%')));
    date_default_timezone_set("Asia/Manila");
    ?>
	
	<table style="width:100%;">
		<tr style=" border-bottom-style:solid;">
			<td style="width:80%;"><?php 
    echo 'Posted By: ' . $value->a_name;
    ?>
</td>
			<td style="width:20%;"><?php 
    echo $value->a_datetime;
    ?>
</td>
		</tr>
		<tr>
			<td colspan="2"><?php 
    echo $value->a_answer;
    ?>
</td>