Browse Source

[Administration] Support > liste tickets : ajout colonne Messages

feature/souke
Guillaume Bourgeois 1 year ago
parent
commit
459c261898
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      backend/views/support/index.php

+ 6
- 0
backend/views/support/index.php View File

@@ -108,6 +108,12 @@ $this->addBreadcrumb($this->getTitle());
return Html::a($ticket->subject, ['support/view', 'id' => $ticket->id]);
}
],
[
'label' => 'Messages',
'value' => function ($ticket) {
return count($ticket->ticketMessages);
}
],
[
'attribute' => 'status',
'filter' => [Ticket::STATUS_OPEN => 'Ouvert', Ticket::STATUS_CLOSED => 'Fermé'],

Loading…
Cancel
Save