Example #1
0
?>
</div>
			<div class="clear_both"></div>
		</div>
		<div id="detail_section">
			<h3 class="detail_header"><?php 
echo Yii::t('subject', 'Tags');
?>
</h3>
			<div id="tags_list">
				<ul>
				<?php 
foreach ($model->tags as $mtag) {
    $model->tag .= $mtag->name . ',';
}
$tags = $model->tag ? SiteHelper::make_tags($model->tag) : SiteHelper::make_tags($model->tag, true);
?>
				<?php 
foreach ($tags as $tag) {
    echo "<li>" . $tag . "</li>";
}
?>
				</ul>
			</div>
		</div>
		<div class="clear_both"></div>
		<div class="detail_section">
		<h3 class="detail_header"><?php 
echo Yii::t('subject', 'Categories');
?>
</h3>