| 1234567891011121314151617181920212223242526272829303132333435363738394041 | 
							- <?php
 
- use yii\helpers\Html;
 
- use yii\widgets\ActiveForm;
 
- /* @var $this yii\web\View */
 
- /* @var $model common\models\Spider */
 
- /* @var $form yii\widgets\ActiveForm */
 
- ?>
 
- <div class="box box-success">
 
-     <div class="box-body">
 
-     <?php $form = ActiveForm::begin(); ?>
 
-     <?= $form->field($model, 'name')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'title')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'domain')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'page_dom')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'list_dom')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'time_dom')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'content_dom')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'title_dom')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'target_category')->textInput(['maxlength' => true]) ?>
 
-     <?= $form->field($model, 'target_category_url')->textInput(['maxlength' => true]) ?>
 
-     <div class="form-group form-submit">
 
-         <?= Html::submitButton($model->isNewRecord ? Yii::t('common', 'Create') : Yii::t('common', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success btn-block' : 'btn btn-success block']) ?>
 
-     </div>
 
-     <?php ActiveForm::end(); ?>
 
-     </div>
 
- </div>
 
 
  |