Blame view

backend/views/comment/_form.php 781 Bytes
8a34dff0   Aleksandr   + коментарии (fro...
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
  <?php
  
  use yii\helpers\Html;
  use yii\widgets\ActiveForm;
  
  /* @var $this yii\web\View */
  /* @var $model common\models\Comment */
  /* @var $form yii\widgets\ActiveForm */
  ?>
  
  <div class="comment-form">
  
      <?php $form = ActiveForm::begin(); ?>
  
      <?= $form->field($model, 'comment_pid')->textInput() ?>
  
      <?= $form->field($model, 'content')->textarea(['rows' => 6]) ?>
  
      <?= $form->field($model, 'created_at')->textInput() ?>
  
      <?= $form->field($model, 'entity_id')->textInput() ?>
  
      <?= $form->field($model, 'user_id')->textInput() ?>
  
      <div class="form-group">
          <?= Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
      </div>
  
      <?php ActiveForm::end(); ?>
  
  </div>