mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-25 00:33:58 -04:00
added zeros to failed messages
This commit is contained in:
@@ -114,8 +114,8 @@
|
|||||||
<span>N/A</span>
|
<span>N/A</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td class="table-field delivered">{{ job.delivered_count if job.delivered_count is not none else '' }}</td>
|
<td class="table-field delivered">{{ job.delivered_count if job.delivered_count is not none else '0' }}</td>
|
||||||
<td class="table-field failed">{{ job.failed_count if job.failed_count is not none else '' }}</td>
|
<td class="table-field failed">{{ job.failed_count if job.failed_count is not none else '0' }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|||||||
Reference in New Issue
Block a user