Bladeren bron

[backend] Bons de livraison : possibilité d'édition

prodstable
Guillaume 2 jaren geleden
bovenliggende
commit
5da278f3a4
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. +2
    -2
      backend/views/delivery-note/index.php

+ 2
- 2
backend/views/delivery-note/index.php Bestand weergeven

@@ -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, [

Laden…
Annuleren
Opslaan