| 12345678910111213141516171819202122232425262728 | 
							- <?php
 
- use yii\helpers\Html;
 
- use yii\widgets\DetailView;
 
- /* @var $this yii\web\View */
 
- /* @var $model common\models\InterviewLog */
 
- $this->title = $model->id;
 
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Interview Logs'), 'url' => ['index']];
 
- $this->params['breadcrumbs'][] = $this->title;
 
- ?>
 
- <div class="box box-success">
 
-     <div class="box-body">
 
-     <?= DetailView::widget([
 
-         'model' => $model,
 
-         'attributes' => [
 
-             'id',
 
-             'interview_id',
 
-             'type',
 
-             'content',
 
-             'created_at',
 
-             'updated_at',
 
-             'status',
 
-         ],
 
-     ]) ?>
 
-     </div>
 
- </div>
 
 
  |