forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
10 lines
420 B
Twig
10 lines
420 B
Twig
{% if results.vote_field_count is same as (0) %}
|
|
<p>{% trans %}No votes have been submitted yet.{% endtrans %}</p>
|
|
{% else %}
|
|
<p>{% trans %}
|
|
{{ results.vote_field_count }} vote with a rating of {{ results.vote_field_average }}
|
|
{% plural results.vote_field_count %}
|
|
{{ results.vote_field_count }} votes with an average rating of {{ results.vote_field_average }}
|
|
{% endtrans %}</p>
|
|
{% endif %}
|