add fingerpint rest

This commit is contained in:
2020-01-06 10:50:57 +01:00
parent 14a5fbed33
commit b05f861667
13 changed files with 637 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\Fingerprint */
$this->title = Yii::t('common/fingerprint', 'Create Fingerprint');
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/fingerprint', 'Fingerprints'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="fingerprint-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>