interview back

This commit is contained in:
andrey
2021-08-16 14:32:54 +03:00
parent ec8b002838
commit 6f7c497d80
17 changed files with 534 additions and 3 deletions

View File

@ -0,0 +1,20 @@
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\interview\models\InterviewRequest */
$this->title = 'Create Interview Request';
$this->params['breadcrumbs'][] = ['label' => 'Interview Requests', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="interview-request-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>