Blame view

backend/views/currency/create.php 522 Bytes
021728bd   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
  <?php
  
  use yii\helpers\Html;
  
  
  /* @var $this yii\web\View */
  /* @var $model common\models\Currency */
  
b96b6861   Mihail   fixed bugs for cu...
9
  $this->title = 'Добавить валюту';
021728bd   Administrator   Importers CRUD
10
11
12
13
14
15
16
17
18
19
20
  $this->params['breadcrumbs'][] = ['label' => 'Currencies', 'url' => ['index']];
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="currency-create">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
b96b6861   Mihail   fixed bugs for cu...
21
      <?= Html::a('Вернуться', ['index'], ['class' => 'btn btn-primary']) ?>
021728bd   Administrator   Importers CRUD
22
  </div>