create.php 656 B

123456789101112131415161718192021222324
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model app\models\Requisites */
  5. $this->title = Yii::t('app', 'Create Requisites');
  6. $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Requisites'), 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="panel panel-primary">
  10. <div class="panel-heading"><span class="glyphicon glyphicon-list"></span><strong> <?= Html::encode($this->title) ?></strong></div>
  11. <div class="panel-body">
  12. <div class="requisites-create">
  13. <?= $this->render('_form', [
  14. 'model' => $model,
  15. ]) ?>
  16. </div>
  17. </div>
  18. </div>