Browse Source

Merge branch 'dev'

prodstable
Guillaume 2 years ago
parent
commit
ced816a27d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      backend/views/delivery-note/index.php

+ 2
- 2
backend/views/delivery-note/index.php View File

@@ -130,9 +130,9 @@ $this->addButton(['label' => 'Nouveau bon de livraison <span class="glyphicon gl
]) : '');
},
'update' => function ($url, $model) {
return ($model->isStatusDraft() ? Html::a('<span class="glyphicon glyphicon-pencil"></span>', $url, [
return Html::a('<span class="glyphicon glyphicon-pencil"></span>', $url, [
'title' => 'Modifier', 'class' => 'btn btn-default'
]) : '');
]);
},
'delete' => function ($url, $model) {
return ($model->isStatusDraft() ? Html::a('<span class="glyphicon glyphicon-trash"></span>', $url, [

Loading…
Cancel
Save