Blame view

backend/views/site/gallery.php 731 Bytes
6af5dbe3   Alexey Boroda   -Admin gallery ready
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  <?php
      
      use artbox\core\widgets\GalleryWidget;
      use common\models\Gallery;
      use yii\helpers\Html;
      use yii\web\View;
      use yiister\gentelella\widgets\Panel;
      
      /**
       * @var View    $this
       * @var Gallery $model
       */
      
      Panel::begin(
          [
              'header' => 'Gallery',
          ]
      );
      
      echo Html::beginForm();
  ?>
  
  <div class="row">
      <?php
          echo GalleryWidget::widget(
              [ 'model' => $model, ]
          );
      ?>
  </div>
  <div class="row">
      <?= Html::submitButton(
          \Yii::t('app', 'Save'),
          [
              'class' => 'btn btn-lg btn-primary',
          ]
      ) ?>
  </div>
  <?php
      
      echo Html::endForm();
      
      Panel::end();
  
  ?>