title = $model->name; $this->params['breadcrumbs'][] = ['label' => Yii::t('mole', 'Task List'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>

$model->id], ['class' => 'btn btn-primary']) ?> $model->id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => Yii::t('mole', 'Are you sure you want to delete this item?'), 'method' => 'post', ], ]) ?>

$model, 'attributes' => [ 'id', 'project', 'name', 'parentId', 'dateAdd:datetime', 'dateStart:datetime', 'dateEnd:datetime', 'module', 'controller', 'type', [ 'attribute' => 'params', 'value' => function($model) { return print_r(json_decode($model->params, true), true); }, ], [ 'attribute' => 'isReady', 'value' => function($model) { return $model->isReady ? Yii::t('mole', 'Yes') : Yii::t('mole', 'No'); }, ], [ 'attribute' => 'completed', 'value' => function($model) { return $model->completed ? Yii::t('mole', 'Yes') : Yii::t('mole', 'No'); }, ], 'priority', 'status', ], ]) ?>