{% load evaluation_filters %} {% if global_evaluation_progress %}
{{ global_evaluation_progress.campaign.title }} {% if global_evaluation_progress.last_vote_datetime %}
{% blocktranslate trimmed with time_interval=global_evaluation_progress.last_vote_datetime|timesince %} Last evaluation: {{ time_interval }} ago {% endblocktranslate %}
{% endif %}
{% blocktranslate trimmed count votes=global_evaluation_progress.vote_count with percent=global_evaluation_progress.vote_count|percentage_zero_on_error:global_evaluation_progress.participation_count %} {{ votes }} submitted evaluation ({{ percent }}) {% plural %} {{ votes }} submitted evaluations ({{ percent }}) {% endblocktranslate %} {% for reward in global_evaluation_progress.rewards_with_progress %}
{{ reward.vote_ratio|percentage:1 }}
{{ reward.text }}
{% endfor %}
{{ global_evaluation_progress.campaign.info_text }}
{% endif %}