add reception global word listener,allow delete transactions, allow delete account_state

This commit is contained in:
2015-12-31 15:42:28 +01:00
parent f59eadd8cc
commit 0b58f628ed
13 changed files with 178 additions and 9 deletions

View File

@@ -2,6 +2,7 @@
use yii\helpers\Html;
use common\models\Transfer;
use yii\helpers\Url;
/* @var $this yii\web\View */
@@ -63,6 +64,17 @@ $formatter = Yii::$app->formatter;
</dl>
</div>
</div>
<div class="row">
<div class="col-md-11 text-right">
<?php echo Html::a('<span class="glyphicon glyphicon-trash"></span>Törlés', Url::toRoute(['delete','id' =>$model->id_transfer]), [
'title' => Yii::t('yii', 'Delete'),
'data-confirm' => Yii::t('yii', 'Are you sure to delete this item?'),
'data-method' => 'post',
'class' => 'btn btn-danger',
// 'style' =>'margin-right: 12px;'
]);?>
</div>
</div>
</div>
</div>