Newer
Older
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
32
33
34
35
36
37
38
39
40
41
42
43
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model app\models\wizflow\GreenForm */
/* @var $form ActiveForm */
?>
<div class="wizflow-step-green">
<div class="row">
<div class="col-lg-2">
<h3>Summary</h3>
<hr/>
<?php
foreach ($path as $step) {
echo $step->summary() . '<br/>';
}
?>
</div>
<div class="col-lg-10">
<div class="alert alert-success">
All right, green then. Do you have something green in mind ?
</div>
<?php $form = ActiveForm::begin([
'action' => ['', 'nav' => 'next']
]); ?>
<?= $form->field($model, 'greenStuff') ?>
<div class="form-group">
<hr/>
<?= Html::a('<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> Prev', ['', 'nav' => 'prev'], ['class' => 'btn btn-primary', 'role' => 'button']) ?>
<?= Html::submitButton('Next <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>', ['class' => 'btn btn-primary']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>
</div>
</div><!-- wizflow-step-green -->