22 lines
		
	
	
		
			539 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			539 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| use yii\helpers\Html;
 | |
| 
 | |
| /* @var $this yii\web\View */
 | |
| /* @var $model backend\modules\hh\models\HhJob */
 | |
| 
 | |
| $this->title = 'Update Hh Job: ' . $model->title;
 | |
| $this->params['breadcrumbs'][] = ['label' => 'Hh Jobs', 'url' => ['index']];
 | |
| $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
 | |
| $this->params['breadcrumbs'][] = 'Update';
 | |
| ?>
 | |
| <div class="hh-job-update">
 | |
| 
 | |
|     <h1><?= Html::encode($this->title) ?></h1>
 | |
| 
 | |
|     <?= $this->render('_form', [
 | |
|         'model' => $model,
 | |
|     ]) ?>
 | |
| 
 | |
| </div>
 | 
