mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-23 09:56:34 +02:00
Ajout des accusés de reception
This commit is contained in:
parent
469e2fce59
commit
479b2c2442
5 changed files with 27 additions and 2 deletions
|
@ -86,7 +86,7 @@
|
|||
'<div class="clearfix message-container">' +
|
||||
'<div class="discussion-message message-sended">' +
|
||||
'<div class="discussion-message-text">' + message.text + '</div>' +
|
||||
'<div class="discussion-message-date">' + message.date + '</div>' +
|
||||
'<div class="discussion-message-date">' + message.date + (message.delivered ? ' <span class="fa fa-check-circle fa-fw text-success"></span>' : '' ) + '</div>' +
|
||||
'</div>' +
|
||||
'</div>';
|
||||
break;
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
<th>Numéro</th>
|
||||
<th>Message</th>
|
||||
<th>Date</th>
|
||||
<th>Delivré</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -54,6 +55,7 @@
|
|||
<td><?php secho($send['target']); ?></td>
|
||||
<td><?php secho($send['content']); ?></td>
|
||||
<td><?php secho($send['at']); ?></td>
|
||||
<td><?php secho($send['delivered'] ? 'Oui' : 'Non'); ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue