42 lines
999 B
PHP
42 lines
999 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\models\NewsletterSearch */
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
?>
|
|
|
|
<div class="newsletter-search">
|
|
|
|
<?php $form = ActiveForm::begin([
|
|
'action' => ['index'],
|
|
'method' => 'get',
|
|
]); ?>
|
|
|
|
<?= $form->field($model, 'id_newsletter') ?>
|
|
|
|
<?= $form->field($model, 'subject') ?>
|
|
|
|
<?= $form->field($model, 'body') ?>
|
|
|
|
<?= $form->field($model, 'status') ?>
|
|
|
|
<?= $form->field($model, 'sent') ?>
|
|
|
|
<?php // echo $form->field($model, 'sent_at') ?>
|
|
|
|
<?php // echo $form->field($model, 'created_at') ?>
|
|
|
|
<?php // echo $form->field($model, 'updated_at') ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton(Yii::t('common/newsletter', 'Search'), ['class' => 'btn btn-primary']) ?>
|
|
<?= Html::resetButton(Yii::t('common/newsletter', 'Reset'), ['class' => 'btn btn-default']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|