| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- $this->breadcrumbs=array(
- $model->title,
- );
- $this->pageTitle=$model->title;
- ?>
- <?php $this->renderPartial('_view', array(
- 'data'=>$model,
- )); ?>
- <div id="comments">
- <?php if($model->commentCount>=1): ?>
- <h3>
- <?php echo $model->commentCount>1 ? $model->commentCount . ' comments' : 'One comment'; ?>
- </h3>
- <?php $this->renderPartial('_comments',array(
- 'post'=>$model,
- 'comments'=>$model->comments,
- )); ?>
- <?php endif; ?>
- <h3>Leave a Comment</h3>
- <?php if(Yii::app()->user->hasFlash('commentSubmitted')): ?>
- <div class="flash-success">
- <?php echo Yii::app()->user->getFlash('commentSubmitted'); ?>
- </div>
- <?php else: ?>
- <?php $this->renderPartial('/comment/_form',array(
- 'model'=>$comment,
- )); ?>
- <?php endif; ?>
- </div><!-- comments -->
|