Blame view

common/widgets/views/education_field.php 838 Bytes
a92850cf   Administrator   firs page
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <?php
  use yii\helpers\Html;
  ?>
  <fieldset>
  
      <legend>Video</legend>
  
      <p class="btn btn-success add_field">Добавить поле</p>
  
  
  
      <div class="price_fields_result">
          <?php $i=0; foreach ($model as $field):?>
              <?= Html::beginTag('div',['class'=>'form-group'])?>
              <input type="text" placeholder="Описание" class="form-control" value="<?= $field->field_name ?>" name="Fields[education][<?=$i?>][description]" />
              <input type="text" placeholder="Цена"  class="form-control" value="<?= $field->value ?>" name="Fields[education][<?=$i++?>][value]" />
              <span data-id="<?= $field->id ?>" title="удалить" class="glyphicon glyphicon-trash delete-field-item"></span>
              <?= Html::endTag('div')?>
          <?php endforeach; ?>
      </div>
  
  </fieldset>