Finished sending of Preordernotifications
This commit is contained in:
@@ -89,7 +89,16 @@
|
||||
</tr>
|
||||
<?php foreach($notifications as $notification): ?>
|
||||
<tr>
|
||||
<td class="text-center"><?=($notification->sent_date) ? date('d.m.Y', $notification->sent_date) : "<i class='fas fa-remove text-danger' title='Noch nicht versendet'></i>"?></td>
|
||||
<td class="text-center">
|
||||
<?php if($notification->send_start && $notification->send_finish): ?>
|
||||
<i class='fas fa-check text-success' title='Versand erfolgreich abgeschlossen'></i>
|
||||
<?php elseif($notification->send_start && !$notification->send_finish): ?>
|
||||
<i class='fas fa-loader text-info' title='Versand gestartet'></i>
|
||||
<?php elseif(!$notification->send_start && !$notification->send_finish): ?>
|
||||
<i class='fas fa-remove text-danger' title='Noch nicht versendet'></i>
|
||||
<?php endif; ?>
|
||||
<?=($notification->sent_date) ? date('d.m.Y', $notification->sent_date) : ""?>
|
||||
</td>
|
||||
<td><?=$notification->campaign->name?></td>
|
||||
<td><?=$notification->subject?></td>
|
||||
<td title="Anzahl berechnet am <?=date('d.m.Y H:i', $notification->edit)?>"><?=($notification->recipient_count) ? $notification->recipient_count : ""?></td>
|
||||
|
||||
Reference in New Issue
Block a user