Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

24 rindas
515 B

  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model common\models\BaseUserAuth */
  5. /* @var $roles array BaseRole */
  6. $this->title = 'Create Base User Auth';
  7. $this->params['breadcrumbs'][] = ['label' => 'Base User Auths', 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="iframe_box base-user-auth-create">
  11. <h1><?= Html::encode($this->title) ?></h1>
  12. <?= $this->render('_form', [
  13. 'model' => $model,
  14. 'roles' => $roles
  15. ]) ?>
  16. </div>