| 1234567891011121314151617181920 | 
							- <?php
 
- use yii\helpers\Html;
 
- /* @var $this yii\web\View */
 
- /* @var $model common\models\InterviewLog */
 
- $this->title = Yii::t('common', 'Create Interview Log');
 
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'back'),  'url' =>$origin,'target'=>'_blank'];
 
- //$this->params['breadcrumbs'][] = $this->title;
 
- ?>
 
- <div class="interview-log-create">
 
-     <?= $this->render('_form', [
 
-         'model' => $model,
 
-         'interview' => $interview,
 
-     ]) ?>
 
- </div>
 
 
  |