We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f6b87 commit 159bef1Copy full SHA for 159bef1
cubedash/templates/overview.html
@@ -73,7 +73,11 @@ <h1><strong>{{ product.name }}</strong>{{ product_args_label }}</h1>
73
</a>
74
75
{% if selected_summary.dataset_count != selected_summary.footprint_count %}
76
- ({{ selected_summary.footprint_count or 'None' }} displayable)
+ {%- if selected_summary.footprint_count -%}
77
+ ({{ '{:,d}'.format(selected_summary.footprint_count) }} displayable)
78
+ {%- else -%}
79
+ (None displayable)
80
+ {%- endif -%}
81
{% endif %}
82
83
<ul>
0 commit comments