mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
- Removed "Failed" and "Total costs" on jobs page - Changed "Sent" to "Processed" on jobs page. - Removed "sent" from dashboard page on jobs table.
14 lines
296 B
HTML
14 lines
296 B
HTML
{% from "components/big-number.html" import big_number %}
|
|
<ul class="grid-row job-totals">
|
|
<li class="column-one-quarter">
|
|
{{ big_number(
|
|
counts.queued, 'queued'
|
|
)}}
|
|
</li>
|
|
<li class="column-one-quarter">
|
|
{{ big_number(
|
|
counts.sent, 'processed'
|
|
)}}
|
|
</li>
|
|
</ul>
|