mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-23 15:57:23 -04:00
Merge pull request #4079 from alphagov/2dp-performance-page
Change performance stats to be 2 decimal places
This commit is contained in:
@@ -88,7 +88,7 @@
|
||||
<div class="govuk-grid-row">
|
||||
<div class="govuk-grid-column-one-half">
|
||||
{{ big_number(
|
||||
'{:.1f}%'.format(average_percentage_under_10_seconds),
|
||||
'{:.2f}%'.format(average_percentage_under_10_seconds),
|
||||
label='on average',
|
||||
) }}
|
||||
</div>
|
||||
@@ -107,7 +107,7 @@
|
||||
{{ item.date | format_date_normal }}
|
||||
{% endcall %}
|
||||
{% call field() %}
|
||||
{{ item.percentage_under_10_seconds }}%
|
||||
{{ '{:.2f}%'.format(item.percentage_under_10_seconds) }}
|
||||
{% endcall %}
|
||||
{% endcall %}
|
||||
<p class="table-show-more-link">
|
||||
|
||||
Reference in New Issue
Block a user