mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
1,442 format for facet counts, refs #255
This commit is contained in:
parent
f4943ca89b
commit
63aac537f2
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@
|
|||
<p><strong><a href="{{ path_with_removed_args(request, {'_facet': facet_name}) }}">{{ facet_name }}</a></strong></p>
|
||||
<ul>
|
||||
{% for facet_value in facet_info.results %}
|
||||
<li><a href="{{ facet_value.toggle_url }}">{{ facet_value.value }}</a> ({{ facet_value.count }})</li>
|
||||
<li><a href="{{ facet_value.toggle_url }}">{{ facet_value.value }}</a> {{ "{:,}".format(facet_value.count) }}</li>
|
||||
{% endfor %}
|
||||
{% if facet_info.truncated %}
|
||||
<li>...</li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue