Your IP : 216.73.216.79


Current Path : /var/www/html/portalv4/backend/modules/moduleRepository/views/ui-version/
Upload File :
Current File : /var/www/html/portalv4/backend/modules/moduleRepository/views/ui-version/update.php

<?php

use yii\helpers\Html;

/* @var $this yii\web\View */
/* @var $model backend\modules\moduleRepository\models\UiVersion */

$this->title = Yii::t('app', 'Update Ui Version: {name}', [
    'name' => $model->version_id,
]);
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Ui Versions'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->version_id, 'url' => ['view', 'id' => $model->version_id]];
$this->params['breadcrumbs'][] = Yii::t('app', 'Update');
?>
<div class="ui-version-update">

    <h1><?= Html::encode($this->title) ?></h1>

    <?= $this->render('_form', [
        'model' => $model,
    ]) ?>

</div>