Use singular form 'result' when number of results = 1

This commit is contained in:
rachidatecs 2023-06-30 18:07:30 -04:00
parent f39e0bf192
commit 257db0fae5
No known key found for this signature in database
GPG key ID: 3CEBBFA7325E5525

View file

@ -7,7 +7,11 @@
{% if cl.get_ordering_field_columns %}
sorted
{% endif %}
results
{% if cl.result_count == 1 %}
result
{% else %}
results
{% endif %}
{% if filters %}
filtered by
{% for filter_param in filters %}