Your IP : 216.73.216.79


Current Path : /var/www/html/pridik/backend/modules/moduleRepository/views/module-download/
Upload File :
Current File : /var/www/html/pridik/backend/modules/moduleRepository/views/module-download/update.php

<?php

use yii\helpers\Html;

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

$this->title = Yii::t('app', 'Update Module Download: {name}', [
    'name' => $model->download_id,
]);
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Module Downloads'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->download_id, 'url' => ['view', 'id' => $model->download_id]];
$this->params['breadcrumbs'][] = Yii::t('app', 'Update');
?>
<div class="module-download-update">

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

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

</div>