Example #1
0
 * Time: 16:43
 * @var $event \common\models\Event
 * @var $this  \yii\web\View
 */
use common\helpers\String;
?>
<div class="panel panel-default">
	<div class="panel-body">
		<h3 class="event-title"><?php 
echo $event->name;
?>
 </h3>
		<hr>
		<p class="text-muted" id="event-description">
			<?php 
echo \common\helpers\Html::bb2html(html_entity_decode($event->description));
?>
		</p>
		<hr/>

		<?php 
if (!empty($event->tags)) {
    ?>
			<?php 
    foreach ($event->tags as $tag) {
        ?>
				<a href="<?php 
        echo \yii\helpers\Url::to(['site/index', 'act' => \common\models\Event::GROUP_ALL, 'tag' => $tag->name]);
        ?>
" class="label label-primary tag-link" title="<?php 
        echo $tag->name;