30 lines
405 B
PHP
30 lines
405 B
PHP
<?php
|
|
use frontend\components\AccountStateBanknoteCountWidget;
|
|
use yii\base\Widget;
|
|
use yii\helpers\Html;
|
|
use yii\helpers\Url;
|
|
|
|
?>
|
|
|
|
<?php
|
|
echo AccountStateBanknoteCountWidget::widget([
|
|
'model' => $model,
|
|
'index' => $index
|
|
]);
|
|
|
|
|
|
if ( $index == 0){
|
|
|
|
?>
|
|
<div class="row">
|
|
<div class="col-md-12 text-right">
|
|
<?php ?>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
?>
|
|
|
|
|