create.php 474 B

1234567891011121314151617181920
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model common\models\InterviewLog */
  5. $this->title = Yii::t('common', 'Create Interview Log');
  6. $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'back'), 'url' =>$origin,'target'=>'_blank'];
  7. //$this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="interview-log-create">
  10. <?= $this->render('_form', [
  11. 'model' => $model,
  12. 'interview' => $interview,
  13. ]) ?>
  14. </div>