add fingerpint rest
This commit is contained in:
23
backend/views/fingerprint/update.php
Normal file
23
backend/views/fingerprint/update.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model common\models\Fingerprint */
|
||||
|
||||
$this->title = Yii::t('common/fingerprint', 'Update {modelClass}: ', [
|
||||
'modelClass' => 'Fingerprint',
|
||||
]) . ' ' . $model->id_fingerprint;
|
||||
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/fingerprint', 'Fingerprints'), 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = ['label' => $model->id_fingerprint, 'url' => ['view', 'id' => $model->id_fingerprint]];
|
||||
$this->params['breadcrumbs'][] = Yii::t('common/fingerprint', 'Update');
|
||||
?>
|
||||
<div class="fingerprint-update">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user