|
100 | 100 | <v-col cols="12"> |
101 | 101 | <h4 class="text-h4 mb-3">Bulk Message History</h4> |
102 | 102 | <p class="text--secondary"> |
103 | | - Your 10 most recent bulk SMS uploads are listed below with a |
104 | | - breakdown of message delivery status. Click |
105 | | - <strong>View</strong> to see all individual messages in a batch. |
| 103 | + Your 10 most recent bulk SMS uploads are shown below, including a |
| 104 | + delivery status breakdown for each batch. Click |
| 105 | + <code>View</code> to see individual messages. |
106 | 106 | </p> |
107 | 107 | <v-progress-linear |
108 | 108 | v-if="loadingHistory" |
109 | 109 | indeterminate |
110 | 110 | class="mb-4" |
111 | 111 | ></v-progress-linear> |
112 | | - <v-simple-table v-if="bulkOrders.length"> |
| 112 | + <v-simple-table> |
113 | 113 | <template #default> |
114 | 114 | <thead> |
115 | 115 | <tr class="text-uppercase subtitle-2"> |
116 | 116 | <th class="text-left">Name</th> |
117 | 117 | <th class="text-center">Total</th> |
118 | | - <th class="text-center">Scheduled</th> |
119 | 118 | <th class="text-center">Pending</th> |
| 119 | + <th class="text-center">Scheduled</th> |
120 | 120 | <th class="text-center">Sent</th> |
121 | 121 | <th class="text-center">Delivered</th> |
122 | 122 | <th class="text-center">Failed</th> |
| 123 | + <th class="text-center">Expired</th> |
123 | 124 | <th class="text-center">Created At</th> |
124 | 125 | <th class="text-center">Action</th> |
125 | 126 | </tr> |
|
130 | 131 | {{ order.request_id }} |
131 | 132 | </td> |
132 | 133 | <td class="text-center">{{ order.total }}</td> |
133 | | - <td class="text-center">{{ order.scheduled_count }}</td> |
134 | 134 | <td class="text-center">{{ order.pending_count }}</td> |
| 135 | + <td class="text-center">{{ order.scheduled_count }}</td> |
135 | 136 | <td class="text-center">{{ order.sent_count }}</td> |
136 | 137 | <td class="text-center">{{ order.delivered_count }}</td> |
137 | 138 | <td class="text-center">{{ order.failed_count }}</td> |
| 139 | + <td class="text-center">{{ order.expired_count }}</td> |
138 | 140 | <td class="text-center"> |
139 | 141 | {{ order.created_at | timestamp }} |
140 | 142 | </td> |
|
153 | 155 | </tbody> |
154 | 156 | </template> |
155 | 157 | </v-simple-table> |
156 | | - <p v-else-if="!loadingHistory" class="text--secondary"> |
157 | | - No bulk message uploads found. |
158 | | - </p> |
159 | 158 | </v-col> |
160 | 159 | </v-row> |
161 | 160 | </v-container> |
|
0 commit comments