Your IP : 216.73.216.79


Current Path : /var/www/html/portalv4/backend/modules/moduleRepository/views/solution-download/
Upload File :
Current File : /var/www/html/portalv4/backend/modules/moduleRepository/views/solution-download/index.php

<?php

use yii\helpers\Html;
use yii\grid\GridView;

/* @var $this yii\web\View */
/* @var $searchModel backend\modules\moduleRepository\models\SolutionDownloadSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */

$this->title = Yii::t('app', 'Solution Downloads');
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="solution-download-index">

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

    <p>
        <?= Html::a(Yii::t('app', 'Create Solution Download'), ['create'], ['class' => 'btn btn-success']) ?>
    </p>

    <?php // echo $this->render('_search', ['model' => $searchModel]); ?>

    <?= GridView::widget([
        'dataProvider' => $dataProvider,
        'filterModel' => $searchModel,
        'columns' => [
            ['class' => 'yii\grid\SerialColumn'],

            'download_id',
            'version_id',
            'download_at',

            ['class' => 'yii\grid\ActionColumn'],
        ],
    ]); ?>


</div>