view.php 1020 B

123456789101112131415161718192021222324252627
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\DetailView;
  4. $this->title = $model->id;
  5. $this->params['breadcrumbs']['messages'] = $this->title;
  6. ?>
  7. <div class="panel panel-primary">
  8. <div class="panel-heading"><span class="glyphicon glyphicon-envelope"></span><strong> <?= Html::encode(Yii::t('app','MessageNum ID') . $this->title) ?></strong></div>
  9. <div class="panel-body">
  10. <div class="profile-view">
  11. <p class="page-header"><?php echo $model->notes; ?></p>
  12. <?= Html::a(Yii::t('app', 'Back ID'), ['/messages/index', 'id' => Yii::$app->user->identity->id], ['class' => 'btn btn-primary']) ?>
  13. <?= Html::a(Yii::t('app', 'Delete ID'), ['delete', 'id' => $model->id], [
  14. 'class' => 'btn btn-danger',
  15. 'data' => [
  16. 'confirm' => Yii::t('app', 'Are you sure you want to delete this item?'),
  17. 'method' => 'post',
  18. ],
  19. ]) ?>
  20. </div>