text-right should be text-end

This commit is contained in:
Deon George 2023-12-18 09:29:23 +11:00
parent fd07fb2be7
commit 6fb7d165ae
2 changed files with 8 additions and 8 deletions

View File

@ -171,7 +171,7 @@
<th>Address</th>
<th>Last Session</th>
<th>Oldest Message</th>
<th class="text-right">Messages Waiting</th>
<th class="text-end">Messages Waiting</th>
</tr>
</thead>
@ -182,7 +182,7 @@
<td>{{ $ao->ftn_3d }}</td>
<td>{{ $ao->system->last_session ? $ao->system->last_session->format('Y-m-d H:i') : '-' }}</td>
<td>{{ ($x=$o->waiting($ao))->count() ? $x->first()->datetime->format('Y-m-d H:i') : '-' }}</td>
<td class="text-right">{{ number_format($x->count()) }}</td>
<td class="text-end">{{ number_format($x->count()) }}</td>
</tr>
@endforeach
</tbody>

View File

@ -164,9 +164,9 @@
<th>Network</th>
<th>System</th>
<th>Address</th>
<th class="text-right">Echomails</th>
<th class="text-right">Netmails</th>
<th class="text-right">Files</th>
<th class="text-end">Echomails</th>
<th class="text-end">Netmails</th>
<th class="text-end">Files</th>
<th>Last Session</th>
<th>Poll Mode</th>
<th>Auto Hold</th>
@ -184,9 +184,9 @@
@endif
</td>
<td>{{ $o->ftn4d }}</td>
<td class="text-right">{{ number_format($o->uncollected_echomail ?? 0) }}</td>
<td class="text-right">{{ number_format($o->uncollected_netmail ?? 0) }}</td>
<td class="text-right">{{ number_format($o->uncollected_files ?? 0) }}</td>
<td class="text-end">{{ number_format($o->uncollected_echomail ?? 0) }}</td>
<td class="text-end">{{ number_format($o->uncollected_netmail ?? 0) }}</td>
<td class="text-end">{{ number_format($o->uncollected_files ?? 0) }}</td>
<td>{{ $o->system->last_session?->format('Y-m-d H:i') }}</td>
<td>{{ is_null($o->system->pollmode) ? 'HOLD' : ($o->system->pollmode ? 'CRASH' : 'DAILY') }}</td>
<td>{{ $o->system->autohold ? 'YES' : 'NO' }}</td>