view.php 786 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. $this->breadcrumbs=array(
  3. $model->title,
  4. );
  5. $this->pageTitle=$model->title;
  6. ?>
  7. <?php $this->renderPartial('_view', array(
  8. 'data'=>$model,
  9. )); ?>
  10. <div id="comments">
  11. <?php if($model->commentCount>=1): ?>
  12. <h3>
  13. <?php echo $model->commentCount>1 ? $model->commentCount . ' comments' : 'One comment'; ?>
  14. </h3>
  15. <?php $this->renderPartial('_comments',array(
  16. 'post'=>$model,
  17. 'comments'=>$model->comments,
  18. )); ?>
  19. <?php endif; ?>
  20. <h3>Leave a Comment</h3>
  21. <?php if(Yii::app()->user->hasFlash('commentSubmitted')): ?>
  22. <div class="flash-success">
  23. <?php echo Yii::app()->user->getFlash('commentSubmitted'); ?>
  24. </div>
  25. <?php else: ?>
  26. <?php $this->renderPartial('/comment/_form',array(
  27. 'model'=>$comment,
  28. )); ?>
  29. <?php endif; ?>
  30. </div><!-- comments -->