We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On pages like https://candidates.democracyclub.org.uk/leaderboard it is quite hard to parse large numbers.
I'd expect 1234 to be formatted as 1,234
1234
1,234
I think this can be fixed. For example:
yournextrepresentative/ynr/apps/candidates/templates/candidates/leaderboard.html
Line 29 in 786472e
If I've understood the Django template correctly, can be replaced with:
{% load humanize %} {{ row.edit_count|intcomma }}
That should probably be used any time there's a number which could be >1,000.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue and Steps to Reproduce
On pages like https://candidates.democracyclub.org.uk/leaderboard it is quite hard to parse large numbers.
Screenshots
Expected
I'd expect
1234
to be formatted as1,234
Additional Details
I think this can be fixed. For example:
yournextrepresentative/ynr/apps/candidates/templates/candidates/leaderboard.html
Line 29 in 786472e
If I've understood the Django template correctly, can be replaced with:
That should probably be used any time there's a number which could be >1,000.
The text was updated successfully, but these errors were encountered: